diff --git a/doc/config.rst b/doc/config.rst
index 3bf15a2948..deb9a449a2 100644
--- a/doc/config.rst
+++ b/doc/config.rst
@@ -2374,6 +2374,16 @@ Design customization
put when tables contents are displayed (you may have them displayed at
the left side, right side, both sides or nowhere).
+.. config:option:: $cfg['RowActionLinksWithoutUnique']
+
+ :type: boolean
+ :default: false
+
+ Defines whether to show row links (Edit, Copy, Delete) and checkboxes
+ for multiple row operations even when the selection does not have a unique key.
+ Using row actions in the absence of a unique key may result in different/more
+ rows being affected since there is no guaranteed way to select the exact row(s).
+
.. config:option:: $cfg['RememberSorting']
:type: boolean
diff --git a/libraries/Config.class.php b/libraries/Config.class.php
index 647daab3bf..133e7b2ba7 100644
--- a/libraries/Config.class.php
+++ b/libraries/Config.class.php
@@ -768,6 +768,9 @@ class PMA_Config
return null;
}
$handle = curl_init($link);
+ if ($handle === false) {
+ return null;
+ }
PMA_Util::configureCurl($handle);
curl_setopt($handle, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt($handle, CURLOPT_HEADER, 1);
diff --git a/libraries/Util.class.php b/libraries/Util.class.php
index ea67c98c31..c4465fe8e2 100644
--- a/libraries/Util.class.php
+++ b/libraries/Util.class.php
@@ -9,6 +9,9 @@ if (! defined('PHPMYADMIN')) {
exit;
}
+require_once 'libraries/Template.class.php';
+use PMA\Template;
+
/**
* Misc functions used all over the scripts.
*
@@ -4471,7 +4474,7 @@ class PMA_Util
*
* @return resource curl_handle with updated options
*/
- public static function configureCurl(resource $curl_handle)
+ public static function configureCurl($curl_handle)
{
if (/*overload*/mb_strlen($GLOBALS['cfg']['ProxyUrl'])) {
curl_setopt($curl_handle, CURLOPT_PROXY, $GLOBALS['cfg']['ProxyUrl']);
@@ -4858,16 +4861,9 @@ class PMA_Util
*/
public static function getStartAndNumberOfRowsPanel($sql_query)
{
- $html = '
';
-
- return $html;
+ return Template::get('startAndNumberOfRowsPanel')
+ ->render(
+ array(
+ 'pos' => $pos,
+ 'unlim_num_rows' => $_REQUEST['unlim_num_rows'],
+ 'rows' => $rows,
+ 'sql_query' => $sql_query,
+ )
+ );
}
}
diff --git a/libraries/config.default.php b/libraries/config.default.php
index 79cb5390b9..a22ac96022 100644
--- a/libraries/config.default.php
+++ b/libraries/config.default.php
@@ -2680,6 +2680,14 @@ $cfg['LimitChars'] = 50;
*/
$cfg['RowActionLinks'] = 'left';
+/**
+ * Whether to show row links (Edit, Copy, Delete) and checkboxes for
+ * multiple row operations even when the selection does not have a unique key.
+ *
+ * @global boolean $cfg['RowActionLinksWithoutUnique']
+ */
+$cfg['RowActionLinksWithoutUnique'] = false;
+
/**
* Default sort order by primary key.
* @global string $cfg['TablePrimaryKeyOrder']
diff --git a/libraries/config/messages.inc.php b/libraries/config/messages.inc.php
index 51e8f41e36..498cabe743 100644
--- a/libraries/config/messages.inc.php
+++ b/libraries/config/messages.inc.php
@@ -490,6 +490,8 @@ $strConfigNumRecentTables_name = __('Recently used tables');
$strConfigNumFavoriteTables_name = __('Favorite tables');
$strConfigRowActionLinks_desc = __('These are Edit, Copy and Delete links.');
$strConfigRowActionLinks_name = __('Where to show the table row links');
+$strConfigRowActionLinksWithoutUnique_desc = __('Whether to show row links even in the absence of a unique key.');
+$strConfigRowActionLinksWithoutUnique_name = __('Show row links anyway');
$strConfigNaturalOrder_desc
= __('Use natural order for sorting table and database names.');
$strConfigNaturalOrder_name = __('Natural order');
diff --git a/libraries/config/setup.forms.php b/libraries/config/setup.forms.php
index 095e745194..35a43448a2 100644
--- a/libraries/config/setup.forms.php
+++ b/libraries/config/setup.forms.php
@@ -218,6 +218,7 @@ $forms['Main_panel']['Browse'] = array(
'RepeatCells',
'LimitChars',
'RowActionLinks',
+ 'RowActionLinksWithoutUnique',
'TablePrimaryKeyOrder',
'RememberSorting',
'RelationalDisplay');
diff --git a/libraries/config/user_preferences.forms.php b/libraries/config/user_preferences.forms.php
index 6dac345429..ef9487f70a 100644
--- a/libraries/config/user_preferences.forms.php
+++ b/libraries/config/user_preferences.forms.php
@@ -125,6 +125,7 @@ $forms['Main_panel']['Browse'] = array(
'RepeatCells',
'LimitChars',
'RowActionLinks',
+ 'RowActionLinksWithoutUnique',
'TablePrimaryKeyOrder',
'RememberSorting',
'RelationalDisplay');
diff --git a/libraries/sql.lib.php b/libraries/sql.lib.php
index 58302ae694..936147dbf7 100644
--- a/libraries/sql.lib.php
+++ b/libraries/sql.lib.php
@@ -1751,20 +1751,35 @@ function PMA_getHtmlForPreviousUpdateQuery($disp_query, $showSql, $sql_data,
/**
* To get the message if a column index is missing. If not will return null
*
- * @param string $table current table
- * @param string $db current database
- * @param boolean $editable whether the results table can be editable or not
+ * @param string $table current table
+ * @param string $db current database
+ * @param boolean $editable whether the results table can be editable or not
+ * @param boolean $has_unique whether there is a unique key
*
* @return PMA_message $message
*/
-function PMA_getMessageIfMissingColumnIndex($table, $db, $editable)
+function PMA_getMessageIfMissingColumnIndex($table, $db, $editable, $has_unique)
{
if (!empty($table) && ($GLOBALS['dbi']->isSystemSchema($db) || !$editable)) {
$missing_unique_column_msg = PMA_message::notice(
- __(
- 'Current selection does not contain a unique column.'
- . ' Grid edit, checkbox, Edit, Copy and Delete features'
- . ' are not available.'
+ sprintf(
+ __(
+ 'Current selection does not contain a unique column.'
+ . ' Grid edit, checkbox, Edit, Copy and Delete features'
+ . ' are not available. %s'
+ ),
+ PMA_Util::showDocu('config', 'cfg_RowActionLinksWithoutUnique')
+ )
+ );
+ } elseif (! empty($table) && ! $has_unique) {
+ $missing_unique_column_msg = PMA_message::notice(
+ sprintf(
+ __(
+ 'Current selection does not contain a unique column.'
+ . ' Grid edit, Edit, Copy and Delete features may result in'
+ . ' undesired behavior. %s'
+ ),
+ PMA_Util::showDocu('config', 'cfg_RowActionLinksWithoutUnique')
)
);
} else {
@@ -1882,7 +1897,10 @@ function PMA_getQueryResponseForResultsReturned($result,
$just_one_table = PMA_resultSetHasJustOneTable($fields_meta);
- $editable = ($has_unique || $updatableView) && $just_one_table;
+ $editable = ($has_unique
+ || $GLOBALS['cfg']['RowActionLinksWithoutUnique']
+ || $updatableView)
+ && $just_one_table;
$displayParts = array(
'edit_lnk' => $displayResultsObject::UPDATE_ROW,
@@ -1960,7 +1978,7 @@ function PMA_getQueryResponseForResultsReturned($result,
);
$missing_unique_column_msg = PMA_getMessageIfMissingColumnIndex(
- $table, $db, $editable
+ $table, $db, $editable, $has_unique
);
$bookmark_created_msg = PMA_getBookmarkCreatedMessage();
diff --git a/po/af.po b/po/af.po
index 03e5efccbb..5f287bf513 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-03-28 11:05+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Afrikaans %s:"
msgstr "SQL-navraag op databasis %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Doen Navraag"
@@ -3631,25 +3632,25 @@ msgstr "Aantoon van boekmerk"
msgid "Delete bookmark"
msgstr "Soek"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3691,9 +3692,9 @@ msgstr[0] "%s resultate binne tabel %s"
msgstr[1] "%s resultate binne tabel %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3759,16 +3760,16 @@ msgstr "Velde"
msgid "Search this table"
msgstr "Soek in databasis"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Begin"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3776,8 +3777,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Vorige"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3785,8 +3786,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "Volgende"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3797,8 +3798,9 @@ msgstr "Einde"
msgid "All"
msgstr "Alle"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows:"
@@ -3907,16 +3909,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Met gekose:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3924,7 +3926,7 @@ msgstr "Met gekose:"
msgid "Check All"
msgstr "Kies Alles"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Drukker mooi (print view)"
@@ -4024,11 +4026,11 @@ msgstr "Wys PHP informasie"
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4095,8 +4097,8 @@ msgstr "Die primere sleutel is verwyder."
msgid "Index %s has been dropped."
msgstr "Indeks %s is verwyder."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4112,7 +4114,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -4124,16 +4126,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4145,10 +4147,10 @@ msgid "Structure"
msgstr "Struktuur"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4156,19 +4158,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Soek"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4177,7 +4179,7 @@ msgid "Insert"
msgstr "Voeg by"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4186,21 +4188,21 @@ msgid "Privileges"
msgstr "Regte"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operasies"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4217,16 +4219,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Navraag dmv Voorbeeld"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4234,18 +4236,18 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns"
msgstr "Voeg By/Verwyder Veld Kolomme"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4253,41 +4255,41 @@ msgstr "Voeg By/Verwyder Veld Kolomme"
msgid "Databases"
msgstr "databasisse"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "Gebruiker"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
#, fuzzy
msgid "Binary log"
msgstr "Biner"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr ""
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -4312,7 +4314,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4953,12 +4955,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4969,28 +4971,28 @@ msgstr ""
msgid "MySQL said: "
msgstr "MySQL het gepraat: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Verduidelik SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Ignoreer SQL Verduideliking"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Sonder PHP Kode"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Skep PHP Kode"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Print view"
msgctxt "Inline edit query"
@@ -4998,94 +5000,88 @@ msgid "Edit inline"
msgstr "Drukker mooi (print view)"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "So"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Maak Leeg"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
#, fuzzy
msgid "Creation"
msgstr "Skep"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr ""
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr ""
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "Sa"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5111,13 +5107,13 @@ msgstr ""
msgid "Rows"
msgstr "Rye"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5565,7 +5561,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6268,10 +6264,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV data"
@@ -6745,7 +6741,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6946,878 +6942,886 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Verander tabel sorteer volgens"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
msgid "Table navigation bar"
msgstr "Tabel kommentaar"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Hernoem tabel na"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, 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:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
msgid "Relational display"
msgstr "Relasie uitsig"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
msgid "For display Options"
msgstr "Databasis statistieke"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Documentation"
msgid "Authentication method to use."
msgstr "Dokumentasie"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Enige gasheer (host)"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Enige gasheer (host)"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
#, fuzzy
msgid "Hide databases"
msgstr "Geen databasisse"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
#, fuzzy
msgid "Server hostname"
msgstr "Bediener Keuse"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Voeg By/Verwyder Veld Kolomme"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Moenie die wagwoord verander nie"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Databasis"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
#, fuzzy
msgid "Server port"
msgstr "Bediener Keuse"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analiseer tabel"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
msgid "Favorites table"
msgstr "Skep 'n nuwe bladsy"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
#, fuzzy
msgid "Relation table"
msgstr "Herstel tabel"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
#, fuzzy
msgid "Server socket"
msgstr "Bediener Keuse"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Kolom Kommentaar word vertoon"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Stellings"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
msgid "Automatically create versions"
msgstr "Bediener weergawe"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Gebruik Tabelle"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Tabel kommentaar"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Wys PHP informasie"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
msgid "Show field types"
msgstr "Wys tabelle"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Wys ruitgebied"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
+msgstr ""
+
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
+msgstr ""
+
+#: libraries/config/messages.inc.php:771
+msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL-stelling"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
#, fuzzy
msgid "Show statistics"
msgstr "Ry Statistiek"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Voeg By/Verwyder Veld Kolomme"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Verstekwaarde (default)"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7825,52 +7829,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7878,84 +7882,84 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
msgid "Proxy username"
msgstr "Gebruiker Naam:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Wagwoord"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
msgid "Send error reports"
msgstr "Bediener Keuse"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Modifications have been saved"
msgid "Enable Zero Configuration mode"
@@ -7981,47 +7985,47 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Dokumentasie"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
#, fuzzy
msgid "Database export options"
msgstr "Databasis statistieke"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV vir M$ Excel data"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -13646,13 +13650,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -15012,6 +15024,12 @@ msgstr "Kommentaar"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "Sa"
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/ar.po b/po/ar.po
index c8c321dba3..922ef8d713 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-03-27 10:17+0200\n"
"Last-Translator: Ahmed Saleh Abd El-Raouf Ismae \n"
"Language-Team: Arabic %s:"
msgstr "إستعلام SQL في قاعدة البيانات %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "إرسال الإستعلام"
@@ -3570,25 +3571,25 @@ msgstr "عرض العلامة المرجعية"
msgid "Delete bookmark"
msgstr "بحث في الجدول"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "التفاصيل…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3638,9 +3639,9 @@ msgstr[4] "%s مطابقة في الجدول %s"
msgstr[5] "%s مطابقة في الجدول %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3698,28 +3699,28 @@ msgstr "مرشح"
msgid "Search this table"
msgstr "بحث في قاعدة البيانات"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "بداية"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "سابق"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "التالي"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "نهاية"
@@ -3728,8 +3729,9 @@ msgstr "نهاية"
msgid "All"
msgstr "الكل"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "عدد الأسطر:"
@@ -3836,16 +3838,16 @@ msgid "Query took %01.4f seconds."
msgstr "استغرق الاستعلام %01.4f ثانية"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "مع المحدد:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3853,7 +3855,7 @@ msgstr "مع المحدد:"
msgid "Check All"
msgstr "تحديد الكل"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "عرض نسخة للطباعة"
@@ -3956,11 +3958,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr "إفتح نافذة phpMyAdmin جديدة"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Javascript must be enabled past this point"
@@ -4026,8 +4028,8 @@ msgstr "لقد تم حذف المفتاح الأساسي."
msgid "Index %s has been dropped."
msgstr "تم حذف الفهرس %s."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4043,7 +4045,7 @@ msgid ""
msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "خادم"
@@ -4055,16 +4057,16 @@ msgid "View"
msgstr "عرض"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4076,10 +4078,10 @@ msgid "Structure"
msgstr "بناء"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4087,19 +4089,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "إبحث"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4108,7 +4110,7 @@ msgid "Insert"
msgstr "إدخال"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4117,21 +4119,21 @@ msgid "Privileges"
msgstr "الإمتيازات"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "عمليات"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "تتبع"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4148,16 +4150,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr "قاعدة البيانات فارغة!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "استعلام بواسطة مثال"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4165,18 +4167,18 @@ msgstr ""
msgid "Events"
msgstr "أحداث"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "المصمم"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns"
msgstr "عواميد منطقة النص"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4184,38 +4186,38 @@ msgstr "عواميد منطقة النص"
msgid "Databases"
msgstr "قاعدة بيانات"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "المستخدمون"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "سجل ثنائي"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "إستنساخ"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "متغيرات"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "مجموعات المحارف"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "القوابس"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "محركات"
@@ -4252,7 +4254,7 @@ msgstr[3] "%1$d صفوف أضيفت."
msgstr[4] "%1$d صفوف أضيفت."
msgstr[5] "%1$d صفوف أضيفت."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4902,12 +4904,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "كبير: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4918,28 +4920,28 @@ msgstr "كبير: %s%s"
msgid "MySQL said: "
msgstr "MySQL قال: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "شرح SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "تخطي شرح SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "بدون كود PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "أنشئ كود PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit mode"
msgctxt "Inline edit query"
@@ -4947,95 +4949,89 @@ msgid "Edit inline"
msgstr "وضع التعديل"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "الأحد"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y الساعة %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s يوم، %s ساعة، %s دقيقة و%s ثانية"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "مدخلات مفقودة:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "الذهاب إلى قاعدة البيانات \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "إنّ ال %s الوظيفية هي مصابة بعطل معروف، أنظر إلى %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "إضغط للإختيار"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "تصفح حاسبك:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "إختر مجلد الرفع من الخادم %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "لا يمكن الوصول إلى الدليل اللذي عينته لعمل التحميل."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no files to upload!"
msgstr "لايوجد أي ملفات لرفعها"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "إفراغ"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "تنفيذ"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "طباعة"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "الإنشاء"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "آخر تحديث"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "آخر فحص"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start row"
-msgid "Start row:"
-msgstr "صف البداية"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5060,13 +5056,13 @@ msgstr "إستعمل هذه القيمة"
msgid "Rows"
msgstr "صفوف"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "بيانات"
@@ -5511,7 +5507,7 @@ msgid "Set value: %s"
msgstr "تعيين القيمة: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "إستعادة القيمة الإفتراضية"
@@ -6262,10 +6258,10 @@ msgstr "تخصيص وضع الإستعراض"
msgid "Customize default options."
msgstr "تخصيص الخيارات الإفتراضية"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "سي إس في"
@@ -6798,7 +6794,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "المستخدمين لايمكنهم وضع قيمة أكبر"
@@ -7033,809 +7029,817 @@ msgstr "هذه هي روابط التعديل والنسخ والحذف"
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "ترتيب طبيعي"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:531
#, fuzzy
#| msgid "Use only icons, only text or both"
msgid "Use only icons, only text or both."
msgstr "إستخدم الأيقونات او النصوص فقط , أو الإثنان"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "عنوان الجدول"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "الترتيب الإفتراضي"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, fuzzy
#| msgid "Persistent connections"
msgid "Use persistent connections to MySQL databases."
msgstr "الإتصالات الثابتة"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "الإتصالات الثابتة"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
#, 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:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "حماية الأعمدة من نوع BINARY"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "عدد الإستعلامات التي حفظت"
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
#, 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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "محرك إعادة الترميز"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, 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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "تذكر ترتيب الجداول"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "الترتيب الإفتراضي"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "عمود عرض علائقي"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "خيارات عرض الخوادم"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "قيمة الجلسة"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication method to use."
msgstr "خيارات المصادقة"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "لا يمكن الدخول إلى خادم MySQL"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "مضيف التحكم"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Control host"
msgid "Control port"
msgstr "مضيف التحكم"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "عواميد منطقة النص"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "لاتغير كلمة السر"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "اسم قاعدة البيانات"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "الجدول المستخدم مؤخرا"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "متغيرات"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "إستخدم الجداول"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "استخدم الجدول المضيف"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "تعليقات الجدول"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "إظهار الدمغة الزمنية لتاريخ الإنشاء"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "أعرض نصيحة"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
+msgstr ""
+
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
+msgstr ""
+
+#: libraries/config/messages.inc.php:771
+msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "إحتفظ بصندوق الإستعلام"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
@@ -7846,11 +7850,11 @@ msgid ""
msgstr ""
"عبارة المرور السرية تستخدم لتشفير كعكة الإنترنت في[kbd]cookie[/kbd] المصادقة"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
@@ -7862,53 +7866,53 @@ msgid ""
msgstr ""
"عبارة المرور السرية تستخدم لتشفير كعكة الإنترنت في[kbd]cookie[/kbd] المصادقة"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "صلاحية دخول الكوكيز"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "عواميد منطقة النص"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "العنوان الغيابي"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7916,52 +7920,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7969,34 +7973,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "اسم المستخدم"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "كلمة السر"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -8008,53 +8012,53 @@ msgstr ""
"تفعيل ضغط [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] لعمليات التصدير "
"والإستيراد"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "زيب"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Issued queries"
msgid "Enter executes queries in console"
msgstr "إستعلامات صادرة"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8080,46 +8084,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Spreadsheet"
msgstr "مستند مفتوح"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "خيارات تصدير قاعدة بيانات"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "بيانات CSV لبرنامج ميكروسوفت إكسل"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Text"
@@ -13964,13 +13968,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -15369,6 +15381,12 @@ msgstr "تعليق"
msgid "Drag to reorder"
msgstr "إسحب لإعادة الترتيب"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start row"
+msgid "Start row:"
+msgstr "صف البداية"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "اختيار الأعمدة (واحد على الأقل):"
diff --git a/po/az.po b/po/az.po
index 6ccb32f91b..8cd47dd25f 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-05-21 01:04+0200\n"
"Last-Translator: Sevdimali İsa \n"
"Language-Team: Azerbaijani %s:"
msgstr "%s Bazasında SQL sorğusu:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Sorğunu göndər"
@@ -3378,7 +3379,7 @@ msgstr "Əlfəcini yenilə"
msgid "Delete bookmark"
msgstr "Əlfəcini sil"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3386,19 +3387,19 @@ msgstr ""
"Server cavab vermir(yada ki lokal MYSQL serverinin soketi duzgün "
"konfiqurasiya edilməyib)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Server cavab vermir."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
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:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Detallar…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
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 "
@@ -3440,9 +3441,9 @@ msgstr[0] "%2$s cədvəlində %1$s uyğunluq"
msgstr[1] "%2$s cədvəlində %1$s uyğunluq"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3496,28 +3497,28 @@ msgstr "Sətirləri filtrlə"
msgid "Search this table"
msgstr "Bu cədvəldə axtar"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Başlanğıc"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Əvvəlki"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Sonrakı"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Son"
@@ -3526,8 +3527,9 @@ msgstr "Son"
msgid "All"
msgstr "Hamısı"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Sətir sayı:"
@@ -3625,16 +3627,16 @@ msgid "Query took %01.4f seconds."
msgstr "sorğu %01.4f saniyədə icra edildi."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Seçilənləri:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3642,7 +3644,7 @@ msgstr "Seçilənləri:"
msgid "Check All"
msgstr "Hamısını Seç"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Çap görüntüsü"
@@ -3735,11 +3737,11 @@ msgstr "Git informasiyası yoxdur!"
msgid "Open new phpMyAdmin window"
msgstr "Yeni phpMyAdmin pəncərəsi aç"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Bu hissəni keçmək üçün Javascript aktiv olmalıdır!"
@@ -3803,8 +3805,8 @@ msgstr "Birinci dərəcəli açar ləğv edildi."
msgid "Index %s has been dropped."
msgstr "%s indeksi ləğv edildi."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3820,7 +3822,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -3832,16 +3834,16 @@ msgid "View"
msgstr "Görünüş"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3853,10 +3855,10 @@ msgid "Structure"
msgstr "Quruluş"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3864,19 +3866,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Axtarış"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3885,7 +3887,7 @@ msgid "Insert"
msgstr "Əlavə et"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3894,21 +3896,21 @@ msgid "Privileges"
msgstr "Səlahiyyətlər"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Əməliyyatlar"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "İzləmə"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3925,16 +3927,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr "Verilənlər Bazası boş olaraq görsənir!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Sorğu"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rutinlər"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3942,16 +3944,16 @@ msgstr "Rutinlər"
msgid "Events"
msgstr "Hadisələr"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Dizayner"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Orta sütunlar"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3959,38 +3961,38 @@ msgstr "Orta sütunlar"
msgid "Databases"
msgstr "Verilənlər Bazaları"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "İstifadəçilər"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Binar logu"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Təkrarlanma(replikasiya)"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Dəyişənlər"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "kodlaşdırma"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Qoşmalar"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Motorlar"
@@ -4015,7 +4017,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d sətir əlavə edildi."
msgstr[1] "%1$d sətir əlavə edildi."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4653,12 +4655,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Ən çox: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4669,118 +4671,114 @@ msgstr "Ən çox: %s%s"
msgid "MySQL said: "
msgstr "MySQL deyir: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "SQL-i İzah Et"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "SQL İzah Et-i Keç"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "PHP Kodunu Göstərmə"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP Kodunu Hazırla"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Sətir içi redaktə"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Baz"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B, %Y saat %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s gün, %s saat, %s dəqiqə və %s saniyə"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Əskik parametrlər:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "\"%s\" verilənlər bazasına keç."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s Funksionallıq bilinən bir xəta tərəfindən zədələnib, baxın %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Dəyişmək üçün tıklayın"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Kompüterindən seç:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Web server upload direktoriyasından%s seçin:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Yüklənəcək fayl yoxdur!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Boşalt"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "İcra et"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Çap et"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Quruluş"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "En son yenilenme"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "En son yoxlama"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Başlanğıc sətri:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Axtarış:"
@@ -4803,13 +4801,13 @@ 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:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5229,7 +5227,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Susmaya görə olan dəyəri geri qaytar"
@@ -5912,10 +5910,10 @@ msgstr "Avtomatik qurtarma rejimi"
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:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV verilenleri"
@@ -6365,7 +6363,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6564,380 +6562,388 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Təbii Sıra"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Cədvəl naviqasiya çubuğu"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Binar sütunları qoru"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
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:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Sorğu tarixi uzunluğu"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Cədvəlin sıralamasını xatırla"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, 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:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Əlaqə görüntü sütunu"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, 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:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "İstifadə olunmayacaqsa boş buraxın."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Parolsuz girişlərə icazə verin"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Session vaxt qurşağı"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "İstifadə üçün identifikasiya metodu."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Əlfəcin cədvəli"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "MySQL server bağlantısını sıxışdır(kompress)."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Əlaqə tipi"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Nəzarət serveri"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Nəzarət portu"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Verilənlər Bazalarını gizlət"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Server host adı"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Central columns"
msgid "Central columns table"
msgstr "Orta sütunlar"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -6949,43 +6955,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:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Parolsuz qoşulmağı sınayın."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Parolsuz qoşul"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -6996,30 +7002,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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Verilənlər Bazasının adı"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Server portu"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Son istifadə edilən Cədvəl"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7031,141 +7037,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:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "Favorit cədvəllər"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Əlaqə cədvəli"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Server yuvası(socket)"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "MySQL server əlaqəsi üçün SSL aktivləşdirir."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Görünüş sütunları cədvəli"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "İfadələrdən izlərə"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Avtomatik olaraq verisyaları yarat"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7173,197 +7179,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:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "İstifadəçi cədvəlləri"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
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:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Bu serverin ətraflı adı"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
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:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Cədvəl haqqında izahat"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Yaradılma zaman nişanını göstər"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Sahə tiplərini göstər"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Funksiya sahələrini göstər"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "İpucu göstər"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "phpinfo() linkini göstər"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "SQL sorğularını göstər"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL sorğusu"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Statistikaları göstər"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
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:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7371,22 +7377,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:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin xəbərdarlığı"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7399,11 +7405,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:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Mətn sahəsi sütunları"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7416,31 +7422,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:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Mətin Sahəsi sətirləri"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
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:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Susmaya görə başlıq"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7448,52 +7454,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Son versiyanı yoxla"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7501,80 +7507,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Proksi istifadəçi adı"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Proksi parolu"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Xəta hesabatları göndər"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Configuration file"
msgid "Enable Zero Configuration mode"
@@ -7600,46 +7606,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Dokumentasiya"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Verilənlər bazası eksport variantları"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "MS Excel verilenleri üçün CSV"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "OpenDocument Mətni"
@@ -13094,13 +13100,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "PHP kodu olaraq göstərilir"
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`%s` cədvəlinin indeksləri ilə əlaqəli problemlər"
@@ -14395,6 +14409,10 @@ msgstr "Şərh:"
msgid "Drag to reorder"
msgstr "Yenidən düzənləmək üçün sürükləyin."
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Başlanğıc sətri:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Sütunları seçin (ən az birini):"
diff --git a/po/be.po b/po/be.po
index b94051bc1c..32fbf99bcb 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-05-15 14:28+0200\n"
"Last-Translator: Viktar Palstsiuk \n"
"Language-Team: Belarusian %s:"
msgstr "SQL-запыт да БД %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Выканаць запыт"
@@ -3782,7 +3783,7 @@ msgstr "Паказваючы закладку"
msgid "Delete bookmark"
msgstr "Выдаліць сувязь"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3790,21 +3791,21 @@ msgid ""
"configured)."
msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)"
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сэрвэр не адказвае"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Падрабязьней…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Не атрымалася ўсталяваць злучэньне для controluser, вызначанае ў вашым "
@@ -3848,9 +3849,9 @@ msgstr[0] "%s супадзеньняў у табліцы %s"
msgstr[1] "%s супадзеньняў у табліцы %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3917,16 +3918,16 @@ msgstr "Файлы"
msgid "Search this table"
msgstr "Пошук у базе дадзеных"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Першая старонка"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3934,8 +3935,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Папярэдняя старонка"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3943,8 +3944,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "Наступная старонка"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3955,8 +3956,9 @@ msgstr "Апошняя старонка"
msgid "All"
msgstr "Усе"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows:"
@@ -4073,16 +4075,16 @@ msgid "Query took %01.4f seconds."
msgstr "Запыт выконваўся %01.4f сэк"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "З адзначанымі:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -4090,7 +4092,7 @@ msgstr "З адзначанымі:"
msgid "Check All"
msgstr "Адзначыць усё"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Вэрсія для друку"
@@ -4201,11 +4203,11 @@ msgstr "Інфармацыя пра вэрсію"
msgid "Open new phpMyAdmin window"
msgstr "Адкрыць новае акно phpMyAdmin"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4271,8 +4273,8 @@ msgstr "Першасны ключ быў выдалены."
msgid "Index %s has been dropped."
msgstr "Індэкс %s быў выдалены."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4290,7 +4292,7 @@ msgstr ""
"іх, магчыма, можна выдаліць."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Сэрвэр"
@@ -4302,16 +4304,16 @@ msgid "View"
msgstr "Выгляд"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4323,10 +4325,10 @@ msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4334,19 +4336,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Пошук"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4355,7 +4357,7 @@ msgid "Insert"
msgstr "Уставіць"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4364,21 +4366,21 @@ msgid "Privileges"
msgstr "Прывілеі"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Апэрацыі"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4395,16 +4397,16 @@ msgstr "Трыгеры"
msgid "Database seems to be empty!"
msgstr "База дадзеных — пустая!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Запыт згодна прыкладу"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Працэдуры"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4412,18 +4414,18 @@ msgstr "Працэдуры"
msgid "Events"
msgstr "Падзеі"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Дызайнэр"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns"
msgstr "Дадаць/выдаліць калёнку крытэру"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4431,40 +4433,40 @@ msgstr "Дадаць/выдаліць калёнку крытэру"
msgid "Databases"
msgstr "Базы дадзеных"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "Карыстальнік"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Двайковы лог"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Рэплікацыя"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Зьменныя"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Кадыроўкі"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Машыны"
@@ -4492,7 +4494,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "Устаўлена радкоў: %1$d."
msgstr[1] "Устаўлена радкоў: %1$d."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -5147,12 +5149,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Максымальны памер: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5163,28 +5165,28 @@ msgstr "Максымальны памер: %s%s"
msgid "MySQL said: "
msgstr "Адказ MySQL: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Тлумачыць SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Не тлумачыць SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Без PHP-коду"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Стварыць PHP-код"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Add new field"
msgctxt "Inline edit query"
@@ -5192,98 +5194,92 @@ msgid "Edit inline"
msgstr "Дадаць новае поле"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ндз"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дзён, %s гадзінаў, %s хвілінаў і %s сэкундаў"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Працэдуры"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Перайсьці да базы дадзеных \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "тэчка вэб-сэрвэра для загрузкі файлаў"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
msgid "There are no files to upload!"
msgstr "Праверыць табліцу"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Ачысьціць"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Друк"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Створаная"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Апошняе абнаўленьне"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Апошняя праверка"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "Суб"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5308,13 +5304,13 @@ msgstr "Выкарыстоўваць гэта значэньне"
msgid "Rows"
msgstr "Радкі"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Дадзеныя"
@@ -5774,7 +5770,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6501,10 +6497,10 @@ msgstr "Рэжым аўтаматычнага ўзнаўленьня"
msgid "Customize default options."
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -7000,7 +6996,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -7222,900 +7218,908 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Зьмяніць парадак табліцы"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Загаловак табліцы"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Перайменаваць табліцу ў"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "Першасны ключ быў дададзены да %s."
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Патокаў узнаўленьня"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display"
msgstr "Адлюстраванае поле сувязі"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
msgid "For display Options"
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
-msgid "Directory where exports can be saved on server."
-msgstr ""
-
-#: libraries/config/messages.inc.php:559
-#, fuzzy
-msgid "Save directory"
-msgstr "Хатняя тэчка дадзеных"
-
#: libraries/config/messages.inc.php:560
-msgid "Leave blank if not used."
+msgid "Directory where exports can be saved on server."
msgstr ""
#: libraries/config/messages.inc.php:561
#, fuzzy
-msgid "Host authorization order"
-msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала"
+msgid "Save directory"
+msgstr "Хатняя тэчка дадзеных"
#: libraries/config/messages.inc.php:562
-msgid "Leave blank for defaults."
+msgid "Leave blank if not used."
msgstr ""
#: libraries/config/messages.inc.php:563
#, fuzzy
-msgid "Host authorization rules"
+msgid "Host authorization order"
msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала"
#: libraries/config/messages.inc.php:564
-msgid "Allow logins without a password"
+msgid "Leave blank for defaults."
msgstr ""
#: libraries/config/messages.inc.php:565
+#, fuzzy
+msgid "Host authorization rules"
+msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала"
+
+#: libraries/config/messages.inc.php:566
+msgid "Allow logins without a password"
+msgstr ""
+
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Значэньне сэсіі"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
msgid "Authentication method to use."
msgstr "Аўтэнтыфікацыя…"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
#, fuzzy
msgid "Authentication type"
msgstr "Аўтэнтыфікацыя…"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Немагчыма залагавацца на сэрвэр MySQL"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
#, fuzzy
msgid "Connection type"
msgstr "Падлучэньні"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Любы хост"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Любы хост"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
#, fuzzy
msgid "Hide databases"
msgstr "Базы дадзеных адсутнічаюць"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
#, fuzzy
msgid "Server hostname"
msgstr "імя сэрвэра"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Дадаць/выдаліць калёнку крытэру"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Не зьмяняць пароль"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "імя базы дадзеных"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
#, fuzzy
msgid "Server port"
msgstr "ID сэрвэра"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Аналізаваць табліцу"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Зьменныя"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
#, fuzzy
msgid "Relation table"
msgstr "Рамантаваць табліцу"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
#, fuzzy
msgid "Server socket"
msgstr "Выбар сэрвэра"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Паказваць камэнтары калёнак"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Дэфрагмэнтаваць табліцу"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Выразы"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Рэжым аўтаматычнага ўзнаўленьня"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Выкарыстоўваць табліцы"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Выкарыстоўваць табліцу хостаў"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Камэнтар да табліцы"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Паказаць інфармацыю пра PHP"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Паказаць стан залежных сэрвэраў"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Паказаць адкрытыя табліцы"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Паказаць сетку"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
#, fuzzy
msgid "Show SQL queries"
msgstr "Паказаць поўныя запыты"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL-запыт"
-#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
-msgstr ""
-
-#: libraries/config/messages.inc.php:772
-#, fuzzy
-msgid "Show statistics"
-msgstr "Статыстыка радку"
-
#: libraries/config/messages.inc.php:773
-msgid ""
-"Mark used tables and make it possible to show databases with locked tables."
+msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
#: libraries/config/messages.inc.php:774
#, fuzzy
+msgid "Show statistics"
+msgstr "Статыстыка радку"
+
+#: libraries/config/messages.inc.php:775
+msgid ""
+"Mark used tables and make it possible to show databases with locked tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:776
+#, fuzzy
msgid "Skip locked tables"
msgstr "Паказаць адкрытыя табліцы"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Дадаць/выдаліць калёнку крытэру"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
msgid "Default title"
msgstr "Перайменаваць базу дадзеных у"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -8123,53 +8127,53 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
#, fuzzy
msgid "Upload directory"
msgstr "Хатняя тэчка дадзеных"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8177,85 +8181,85 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
msgid "Proxy username"
msgstr "Імя карыстальніка:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Пароль"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
msgid "Send error reports"
msgstr "ID сэрвэра"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL-запыт"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Enable Zero Configuration mode"
@@ -8285,48 +8289,48 @@ msgstr "Апаратная аўтэнтыфікацыя скончылася н
msgid "Signon authentication"
msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV з выкарыстаньнем LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Спэцыфікацыя Open Document"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Іншы колер"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV для дадзеных MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -14463,13 +14467,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "У выглядзе PHP-коду"
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Праблемы з індэксамі для табліцы `%s`"
@@ -15884,6 +15896,12 @@ msgstr "Камэнтар"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "Суб"
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/be@latin.po b/po/be@latin.po
index 3339255f6b..30c0a87cbe 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-03-28 11:02+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Belarusian (latin) %s:"
msgstr "SQL-zapyt da BD %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Vykanać zapyt"
@@ -3816,7 +3817,7 @@ msgstr "Pakazvajučy zakładku"
msgid "Delete bookmark"
msgstr "Vydalić suviaź"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3824,21 +3825,21 @@ msgid ""
"configured)."
msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)"
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Server nie adkazvaje"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Padrabiaźniej…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
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 "
@@ -3884,9 +3885,9 @@ msgstr[1] "%s supadzieńniaŭ u tablicy %s"
msgstr[2] "%s supadzieńniaŭ u tablicy %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3953,16 +3954,16 @@ msgstr "Fajły"
msgid "Search this table"
msgstr "Pošuk u bazie dadzienych"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Pieršaja staronka"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3970,8 +3971,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Papiaredniaja staronka"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3979,8 +3980,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "Nastupnaja staronka"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3991,8 +3992,9 @@ msgstr "Apošniaja staronka"
msgid "All"
msgstr "Usie"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows:"
@@ -4109,16 +4111,16 @@ msgid "Query took %01.4f seconds."
msgstr "Zapyt vykonvaŭsia %01.4f sek"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Z adznačanymi:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -4126,7 +4128,7 @@ msgstr "Z adznačanymi:"
msgid "Check All"
msgstr "Adznačyć usio"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Versija dla druku"
@@ -4237,11 +4239,11 @@ msgstr "Infarmacyja pra versiju"
msgid "Open new phpMyAdmin window"
msgstr "Adkryć novaje akno phpMyAdmin"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4307,8 +4309,8 @@ msgstr "Pieršasny kluč byŭ vydaleny."
msgid "Index %s has been dropped."
msgstr "Indeks %s byŭ vydaleny."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4326,7 +4328,7 @@ msgstr ""
"ich, mahčyma, možna vydalić."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -4338,16 +4340,16 @@ msgid "View"
msgstr "Vyhlad"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4359,10 +4361,10 @@ msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4370,19 +4372,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Pošuk"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4391,7 +4393,7 @@ msgid "Insert"
msgstr "Ustavić"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4400,21 +4402,21 @@ msgid "Privileges"
msgstr "Pryvilei"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Aperacyi"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4431,16 +4433,16 @@ msgstr "Tryhiery"
msgid "Database seems to be empty!"
msgstr "Baza dadzienych — pustaja!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Zapyt zhodna prykładu"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Pracedury"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4448,18 +4450,18 @@ msgstr "Pracedury"
msgid "Events"
msgstr "Padziei"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Dyzajner"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns"
msgstr "Dadać/vydalić kalonku kryteru"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4467,40 +4469,40 @@ msgstr "Dadać/vydalić kalonku kryteru"
msgid "Databases"
msgstr "Bazy dadzienych"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "Karystalnik"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Dvajkovy łog"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replikacyja"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Źmiennyja"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Kadyroŭki"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Mašyny"
@@ -4528,7 +4530,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "Ustaŭlena radkoŭ: %1$d."
msgstr[1] "Ustaŭlena radkoŭ: %1$d."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -5191,12 +5193,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Maksymalny pamier: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5207,28 +5209,28 @@ msgstr "Maksymalny pamier: %s%s"
msgid "MySQL said: "
msgstr "Adkaz MySQL: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Tłumačyć SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Nie tłumačyć SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Biez PHP-kodu"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Stvaryć PHP-kod"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Add new field"
msgctxt "Inline edit query"
@@ -5236,98 +5238,92 @@ msgid "Edit inline"
msgstr "Dadać novaje pole"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ndz"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dzion, %s hadzinaŭ, %s chvilinaŭ i %s sekundaŭ"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Pracedury"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Pierajści da bazy dadzienych \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Isnuje viadomaja pamyłka z vykarystańniem parametra %s, hladzicie apisańnie "
"na %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "tečka web-servera dla zahruzki fajłaŭ"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Niemahčyma adkryć paznačanuju vami tečku dla zahruzki fajłaŭ."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Ačyścić"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Druk"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Stvoranaja"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Apošniaje abnaŭleńnie"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Apošniaja pravierka"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Showing rows"
-msgid "Start row:"
-msgstr "Pakazanyja zapisy"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5352,13 +5348,13 @@ msgstr "Vykarystoŭvać heta značeńnie"
msgid "Rows"
msgstr "Radki"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5820,7 +5816,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6543,10 +6539,10 @@ msgstr "Režym aŭtamatyčnaha ŭznaŭleńnia"
msgid "Customize default options."
msgstr "Dziejańni z vynikami zapytaŭ"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -7044,7 +7040,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -7265,891 +7261,899 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Źmianić paradak tablicy"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Zahałovak tablicy"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Pierajmienavać tablicu ŭ"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, 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:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Patokaŭ uznaŭleńnia"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display"
msgstr "Adlustravanaje pole suviazi"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Relational display field"
msgid "For display Options"
msgstr "Adlustravanaje pole suviazi"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Značeńnie sesii"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authenticating…"
msgid "Authentication method to use."
msgstr "Aŭtentyfikacyja…"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, 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:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Luby chost"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Luby chost"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Dadać/vydalić kalonku kryteru"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Nie źmianiać parol"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "imia bazy dadzienych"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analizavać tablicu"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Źmiennyja"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Pakazvać kamentary kalonak"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Defrahmentavać tablicu"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Vyrazy"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Režym aŭtamatyčnaha ŭznaŭleńnia"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Vykarystoŭvać tablicy"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Vykarystoŭvać tablicu chostaŭ"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Kamentar da tablicy"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Pakazać infarmacyju pra PHP"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Pakazać stan zaležnych serveraŭ"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Pakazać adkrytyja tablicy"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Pakazać sietku"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
+msgstr ""
+
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
+msgstr ""
+
+#: libraries/config/messages.inc.php:771
+msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "in query"
msgid "Retain query box"
msgstr "pa zapytu"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Dadać/vydalić kalonku kryteru"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Pa zmoŭčańni"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -8157,52 +8161,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8210,86 +8214,86 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username:"
msgid "Proxy username"
msgstr "Imia karystalnika:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Parol"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Execute bookmarked query"
msgid "Enter executes queries in console"
msgstr "Vykanać zapyt z zakładak"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Enable Zero Configuration mode"
@@ -8323,50 +8327,50 @@ msgstr "Aŭtentyfikacyja…"
msgid "Signon authentication"
msgstr "Aŭtentyfikacyja…"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV z vykarystańniem LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Specyfikacyja Open Document"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Inšy koler"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
#, fuzzy
#| msgid "Database export options"
msgid "Database export options"
msgstr "Nałady ekspartu bazy dadzienych"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV dla dadzienych MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -14527,13 +14531,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "U vyhladzie PHP-kodu"
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Prablemy z indeksami dla tablicy `%s`"
@@ -15947,6 +15959,12 @@ msgstr "Kamentar"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Showing rows"
+msgid "Start row:"
+msgstr "Pakazanyja zapisy"
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/bg.po b/po/bg.po
index 27c0a7ceab..2c0998ace8 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-05-23 22:10+0200\n"
"Last-Translator: Valentin Mladenov \n"
"Language-Team: Bulgarian %s:"
msgstr "SQL заявка към БД %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Изпълни заявката"
@@ -3453,7 +3454,7 @@ msgstr "Показване на белязка"
msgid "Delete bookmark"
msgstr "Изтриване релация"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3461,19 +3462,19 @@ msgstr ""
"Сървърът не отговаря (или местният сокет на сървъра не е конфигуриран "
"правилно)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Сървърът не отговаря."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Проверете правата на папката, съдържаща БД."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Подробности…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3513,9 +3514,9 @@ msgstr[0] "%1$s съвпадение в таблица %2$s"
msgstr[1] "%1$s съвпадения в таблица %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3573,28 +3574,28 @@ msgstr "Филтри"
msgid "Search this table"
msgstr "Търсене в БД"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Начало"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Предна"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Следваща"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Последна"
@@ -3603,8 +3604,9 @@ msgstr "Последна"
msgid "All"
msgstr "Всички"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Брой редове:"
@@ -3709,16 +3711,16 @@ msgid "Query took %01.4f seconds."
msgstr "Заявката отне %01.4f секунди"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Когато има отметка:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3726,7 +3728,7 @@ msgstr "Когато има отметка:"
msgid "Check All"
msgstr "Маркиране всички"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Преглед за печат"
@@ -3831,11 +3833,11 @@ msgstr "Весия"
msgid "Open new phpMyAdmin window"
msgstr "Отваряне на нов прозорец с phpMyAdmin"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Javascript must be enabled past this point"
@@ -3901,8 +3903,8 @@ msgstr "Главният ключ беше изтрит."
msgid "Index %s has been dropped."
msgstr "Индекс %s беше изтрит."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3920,7 +3922,7 @@ msgstr ""
"бъде премахнат."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Сървър"
@@ -3932,16 +3934,16 @@ msgid "View"
msgstr "Изглед"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3953,10 +3955,10 @@ msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3964,19 +3966,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Търсене"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3985,7 +3987,7 @@ msgid "Insert"
msgstr "Вмъкване"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3994,21 +3996,21 @@ msgid "Privileges"
msgstr "Права"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Операции"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Проследяване"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4025,16 +4027,16 @@ msgstr "Тригери"
msgid "Database seems to be empty!"
msgstr "БД изглежда празна!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Заявка по пример"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Процедури"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4042,18 +4044,18 @@ msgstr "Процедури"
msgid "Events"
msgstr "Събития"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Строител"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns"
msgstr "Колони в текство поле"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4061,38 +4063,38 @@ msgstr "Колони в текство поле"
msgid "Databases"
msgstr "БД"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Потребители"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Двоичен дневник"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Репликация"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Променливи"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Знакови набори"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Добавки"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Хранилища"
@@ -4117,7 +4119,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d ред добавен."
msgstr[1] "%1$d реда добавени."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4764,12 +4766,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Изброяване, избор от списък на определените стойности"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Максимум: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4780,28 +4782,28 @@ msgstr "Максимум: %s%s"
msgid "MySQL said: "
msgstr "MySQL отговори: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Обяснение на SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Пропусни Explain SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Без PHP код"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Създаване на PHP код"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
@@ -4809,95 +4811,89 @@ msgid "Edit inline"
msgstr "Редактиране"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "нд"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%e %B %Y в %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дена, %s часа, %s минути и %s секунди"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Липсващ параметър:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Показване БД \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Функционалността %s се влияе от известен дефект, виж %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Щракване за превключване"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Разглеждане на компютъра:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Избор от директорията за качване %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Папката, която сте указали за качване е недостъпна."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no files to upload!"
msgstr "Няма файлве за качване"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Изчистване"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Изпълнение"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Печат"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Дата на създаване"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Последно обновление"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Последна проверка"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start row"
-msgid "Start row:"
-msgstr "Начален ред"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -4922,13 +4918,13 @@ msgstr "Използване тази стойност"
msgid "Rows"
msgstr "Редове"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Данни"
@@ -5377,7 +5373,7 @@ msgid "Set value: %s"
msgstr "Стойност: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Стойност по подразбиране"
@@ -6183,10 +6179,10 @@ msgstr "Персонализиране на преглеждането"
msgid "Customize default options."
msgstr "Персонализиране настройките по подразбиране"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6719,7 +6715,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6950,40 +6946,48 @@ msgstr "Това са връзките Редакция, Копиране и И
msgid "Where to show the table row links"
msgstr "Къде да бъдат показани връзките в ред от таблица"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
#, 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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Естествен ред"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:531
#, fuzzy
#| msgid "Use only icons, only text or both"
msgid "Use only icons, only text or both."
msgstr "Използване само пиктограми, само текст или и двете"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Заглавие на таблицата"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
#, 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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip буфериране"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid ""
#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
@@ -6995,21 +6999,21 @@ msgstr ""
"[kbd]ИНТЕЛИГЕНТНО[/kbd] - т.е. низходящ ред за колони тип TIME, DATE, "
"DATETIME и TIMESTAMP, иначе възходящ ред"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Ред за сортиране по подразбиране"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Use persistent connections to MySQL databases."
msgstr "Използване на постоянни връзки към MySQL БД"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Постоянни връзки"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7021,11 +7025,11 @@ msgid ""
msgstr ""
"Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Липсват таблици от хранилището за конфигурация на phpMyAdmin"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7036,11 +7040,11 @@ msgid ""
msgstr ""
"Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7051,228 +7055,228 @@ msgid ""
msgstr ""
"Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
#, fuzzy
#| msgid "Allow to display all the rows"
msgid "How to display the menu tabs"
msgstr "Разрешаване показването на всички редове"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Защитаване на двоичните колони"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Постоянна история на заявките"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "Колко заявки да се съхраняват в историята"
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Дължина на историята на заявки"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, 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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Запомняне сортирането на таблици"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Ред за сортиране по подразбиране"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Повтаряне на заглавката"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "Релационна схема"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "Настройки показване сървъри"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
#, 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:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "Оставете празно, ако не се използва"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "Оставете празно, за стойности по подразбиране"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Разрешаване вход без парола"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Разрешаване вход с потребител root"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Сесийна стойност"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "Метод за удостоверяване"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Тип удостоверяване"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Таблица за белязки"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Компресиране връзката към MySQL сървър"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Компресиране връзката"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Тип връзки"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Парола на контролен потребител"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7285,11 +7289,11 @@ msgstr ""
"Специален MySQL потребител с ограничени права, [a@http://wiki.phpmyadmin.net/"
"pma/controluser]още информация[/a]"
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Контролен потребител"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7301,11 +7305,11 @@ msgstr ""
"Алтернативен хост, на който има хранилище с конфигурация; оставете празно, "
"за да използвате вече дефиниран хост"
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Контролен хост"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7318,19 +7322,19 @@ msgstr ""
"Алтернативен хост, на който има хранилище с конфигурация; оставете празно, "
"за да използвате вече дефиниран хост"
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Control host"
msgid "Control port"
msgstr "Контролен хост"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
#, fuzzy
#| msgid "Hide databases matching regular expression (PCRE)"
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Скриване БД, съответстващи на регулярен израз (PCRE)"
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7339,166 +7343,166 @@ msgstr ""
"bugs/2606/]системата за проследяване на дефекти на PMA[/a] и [a@http://bugs."
"mysql.com/19588]дефекти на MySQL[/a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Забрана използването на INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Скриване БД"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "Адрес за изход"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "Показване таблицата със състоянието на подчинените"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "Колони в текство поле"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "Опит за връзка без парола"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Връзка без парола"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Показване само на изброените БД"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr "Оставете празно, ако не използвате удостоверяване от настройките"
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Парола за удостоверяване от настройките"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Име БД"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
#, 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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Порт на сървъра"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Последно отваряна таблица"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Променливи"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Таблица за връзка"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -7510,66 +7514,66 @@ msgstr ""
"За примери посетете [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]видове удостоверяване[/a]"
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
#, 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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Сокет на сървъра"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Използване SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Показване таблицата с колоните"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Таблица с визуалните настройки"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7577,11 +7581,11 @@ msgstr ""
"Дали израз DROP DATABASE IF EXISTS да бъде добавян като първи ред в дневника "
"при създаване на БД."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Добавяне DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7589,11 +7593,11 @@ msgstr ""
"Дали израз DROP TABLE IF EXISTS да бъде добавян като първи ред в дневника "
"при създаване на таблица."
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Добавяне DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7601,89 +7605,89 @@ msgstr ""
"Дали израз DROP VIEW IF EXISTS да бъде добавян като първи ред в дневника при "
"създаване на изглед."
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Добавяне DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Изрази, които да бъдат проследявани"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Автоматично създаване на версии"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Таблица за съхранение на потребителските предпочитания"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Използване таблиците"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "От таблица Host"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7691,36 +7695,36 @@ msgstr ""
"Разбираемо за потребителя описание на този сървър. Ако е празно ще бъде "
"показан хоста."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Описателно име на този сървър"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
#, 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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Разрешаване показването на всички редове"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Показване формуляр за смяна на парола"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Показване формуляр за създаване на БД"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables"
@@ -7729,13 +7733,13 @@ msgstr ""
"Показване или скриване на колона с времево клеймо на създаването за всички "
"таблици"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Коментари към таблицата"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables"
@@ -7744,11 +7748,11 @@ msgstr ""
"Показване или скриване на колона с времево клеймо на създаването за всички "
"таблици"
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Показване времево клеймо на създаването"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last update timestamp for all tables"
@@ -7758,11 +7762,11 @@ msgstr ""
"Показване или скриване на колона с времево клеймо на последната промяна за "
"всички таблици"
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Показване времево клеймо на последната промяна"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last check timestamp for all tables"
@@ -7772,11 +7776,11 @@ msgstr ""
"Показване или скриване на колона с времево клеймо на последната проверка за "
"всички таблици"
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Показване времево клеймо на последната проверка"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
#, fuzzy
#| msgid ""
#| "Defines whether or not type fields should be initially displayed in edit/"
@@ -7788,31 +7792,31 @@ msgstr ""
"Определя дали първоначално да бъдат показани типовете на полетата при "
"редакция/вмъкване"
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Показване типовете полета"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
#, 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:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Показване поле с функциите"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
#, fuzzy
#| msgid "Whether to show hint or not"
msgid "Whether to show hint or not."
msgstr "Дали да бъде показвана подсказка"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Показване подсказка"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -7824,15 +7828,15 @@ msgstr ""
"Показва връзка към изхода на [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Показване връзка към phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Показва подробна информация за MySQL сървъра"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -7841,11 +7845,11 @@ msgid ""
msgstr ""
"Определя дали SQL заявките, генерирани от phpMyAdmin да бъдат показвани"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Показване на SQL заявките"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
#, fuzzy
#| msgid ""
#| "Defines whether the query box should stay on-screen after its submission"
@@ -7854,11 +7858,11 @@ msgid ""
msgstr ""
"Определя дали прозорецът със заявката да остане екрана след изпращането му"
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Запазване отворен прозореца за заявки"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
#, fuzzy
#| msgid "Allow to display database and table statistics (eg. space usage)"
msgid "Allow to display database and table statistics (eg. space usage)."
@@ -7866,20 +7870,20 @@ msgstr ""
"Разрешаване показването на статистика за таблици и БД (напр. заемано "
"пространство)"
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Показване статистика"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Пропускане заключени таблици"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7890,11 +7894,11 @@ msgid ""
msgstr ""
"Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7906,61 +7910,61 @@ msgid ""
msgstr ""
"Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Валидност на бисквитката за вход"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Колони в текство поле"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr "Реда в текстово поле"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
#, 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:791
+#: libraries/config/messages.inc.php:793
#, 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:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Заглавие по подразбиране"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
#, 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:795
+#: libraries/config/messages.inc.php:797
#, 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:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7968,57 +7972,57 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
#, 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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Папка за качване на файлове"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Проверка за обновление"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
#, 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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8026,34 +8030,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "Потребителско име"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Парола"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8065,55 +8069,55 @@ msgstr ""
"Включване на [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
"компресия при импорт и експорт"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "Порт на сървъра"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "Изпълнени заявки"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8141,46 +8145,46 @@ msgstr "HTTP удостоверяване"
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV с LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Open Document Spreadsheet"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Бърз"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Потребителски"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Опции за експорт на БД"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV за MS Excel данни"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -13938,20 +13942,33 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Показване като PHP-код"
-#: libraries/sql.lib.php:1765
-#, fuzzy
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
#| 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Тази таблица не съдържа уникална колона. Функциите, свързани с мрежата за "
"редакция, отметката, връзките редактиране, копиране и изтриване може да не "
"работят след запазване."
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Тази таблица не съдържа уникална колона. Функциите, свързани с мрежата за "
+"редакция, отметката, връзките редактиране, копиране и изтриване може да не "
+"работят след запазване."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем с индексите на таблица `%s`"
@@ -15288,6 +15305,12 @@ msgstr "Коментар"
msgid "Drag to reorder"
msgstr "Завличане за промяна на подредбата"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start row"
+msgid "Start row:"
+msgstr "Начален ред"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Избор на колона (поне една):"
diff --git a/po/bn.po b/po/bn.po
index fe2379dc14..d7bdec2f94 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-11-05 10:27+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Bengali %s:"
msgstr "ডাটাবেইজে SQL অনুসন্ধান %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "অনুসন্ধান পেশ কর"
@@ -3601,26 +3602,26 @@ msgstr "বুকর্মাক দেখাচ্ছে"
msgid "Delete bookmark"
msgstr "সর্ম্পক মুছা"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"সার্ভারটি সাড়া দিচ্ছে না। (বা স্থানীয় সার্ভারটির সকেট সঠিকভাবে কনফিগার করা হয়নি)।"
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "সার্ভারটি সাড়া দিচ্ছে না।"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "ডাটাবেইজ ডিরেক্টরির অধিকারসমূহ পরীক্ষা করুন।"
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "বিশদ…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr "নিয়ন্ত্রক ব্যবহারকারীর জন্য নির্ধারিত কনফিগারেশন সংযোগে ব্যার্থ হয়েছে।"
@@ -3660,9 +3661,9 @@ msgstr[0] "%2$s মধ্যে %1$s মিল"
msgstr[1] "%2$s মধ্যে %1$s গুলো মিল"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3720,28 +3721,28 @@ msgstr "ফিল্টারসমূহ"
msgid "Search this table"
msgstr "ডাটাবেইজে খোঁজ"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "আরম্ভ"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "পূর্ববর্তী"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "পরবর্তী"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "শেষ"
@@ -3750,8 +3751,9 @@ msgstr "শেষ"
msgid "All"
msgstr "সবগুলো"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "রো সংখ্যা:"
@@ -3848,16 +3850,16 @@ msgid "Query took %01.4f seconds."
msgstr "অনুসন্ধানে %01.4f সেঃ লেগেছ."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "নিবার্চিত গুলো নিয়ে:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3865,7 +3867,7 @@ msgstr "নিবার্চিত গুলো নিয়ে:"
msgid "Check All"
msgstr "সবগুলোতে টিক দাও"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "মুদ্রনের দেখা"
@@ -3960,11 +3962,11 @@ msgstr "Git সম্পর্কিত তথ্য নাই।"
msgid "Open new phpMyAdmin window"
msgstr "নতুন phpMyAdmin উইন্ডো খোল"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "পাতার উপরে যাওয়ার জন্য বারে ক্লীক করুন"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "এখানে আসার পুর্বেই জাভা স্ক্রীপট কার্যকর থাকতে হবে।"
@@ -4028,8 +4030,8 @@ msgstr "প্রাথমিক কী মুছা হয়েছে"
msgid "Index %s has been dropped."
msgstr "ইনডেক্স %s মুছা হয়েছে।"
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4045,7 +4047,7 @@ msgid ""
msgstr "ইনডেক্স %1$s এবং %2$s এক সমান মনে হয় এবং যে কোন একটি মুছে ফেলুন।"
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "সার্ভার"
@@ -4057,16 +4059,16 @@ msgid "View"
msgstr "দেখা"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4078,10 +4080,10 @@ msgid "Structure"
msgstr "গঠন"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4089,19 +4091,19 @@ msgid "SQL"
msgstr "এসকিউএল"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "খোঁজা"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4110,7 +4112,7 @@ msgid "Insert"
msgstr "ইনর্সাট"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4119,21 +4121,21 @@ msgid "Privileges"
msgstr "অধিকারসমূহ"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "কাজসমূহ"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "ট্রেকিং"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4150,16 +4152,16 @@ msgstr "ট্রিগারসমূহ"
msgid "Database seems to be empty!"
msgstr "ডাটাবেইজটি খালি মনে হয়!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "অনুসন্ধান"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "রুটিনসমূহ"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4167,18 +4169,18 @@ msgstr "রুটিনসমূহ"
msgid "Events"
msgstr "ইভেন্টসমূহ"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "নকশাকারী"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns"
msgstr "টেক্সএরিয়া স্তম্ভ"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4186,38 +4188,38 @@ msgstr "টেক্সএরিয়া স্তম্ভ"
msgid "Databases"
msgstr "ডাটাবেইজ"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "ব্যবহারকারী"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "বাইনারী লগ"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "অনুলিপি"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "চলকসমূহ"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "বর্ণরাশী"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "প্লাগইন"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "ব্যবস্থাসমূহ"
@@ -4242,7 +4244,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d টি রো প্রবেশ করেছে।"
msgstr[1] "%1$d টি রো প্রবেশ করেছে।"
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4924,12 +4926,12 @@ msgstr "একটি চলক-দৈর্ঘ্যের (০-৬৫,৫৩৫
msgid "An enumeration, chosen from the list of defined values"
msgstr "একটি গণক, নিধারির্ত মানের তালিকা থেকে পছন্দ করা হয়"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "সবোর্চ্চ: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4940,28 +4942,28 @@ msgstr "সবোর্চ্চ: %s%s"
msgid "MySQL said: "
msgstr "MySQL বলেছে: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "SQL এর ব্যাখা"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "SQL এর ব্যাখা এড়িয়ে যাও"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "পিএইছপি কোড ছাড়া"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "পিএইছপি কোড তৈরী কর"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
@@ -4969,93 +4971,89 @@ msgid "Edit inline"
msgstr "ইনডেক্স সম্পাদনা"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "রবিবার"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s দিন, %s ঘন্টা, %s মিনিট এবং %s সেকেন্ড"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "parameter নাই:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "ডাটাবেইজ \"%s\" যাও।"
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s কার্যকারিতা একটি চিহ্নিত সমস্যা, %s দেখুন"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "টোগল ক্লীক করুন"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "আপনার কম্পিউটারে দেখুন:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "ওয়েভ সার্ভারের আপলোড ডিরেক্টরি থেকে নির্বাচন করুন %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "আপলোড করার জন্য নির্ধারিত ডিরেক্টরীটি পাওয়া যাচ্ছে না।"
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no files to upload!"
msgstr "আপলোড করার জন্য কোন ফাইল নাই"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "খালি"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "কর"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "প্রিন্ট"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "প্রস্তুত"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "সর্বশেষ আপডেট"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "সর্বশেষ যাচাই"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "শুরুর স্তম্ভ:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "খুঁজ:"
@@ -5078,13 +5076,13 @@ msgstr "এই মানটি ব্যবহার কর"
msgid "Rows"
msgstr "সারির #"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "তথ্য"
@@ -5523,7 +5521,7 @@ msgid "Set value: %s"
msgstr "মান সেট কর:%s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "স্বাভাবিক মান ফিরিয়ে আন"
@@ -6287,10 +6285,10 @@ msgstr "ব্রাউজ পদ্ধতি পরিবর্তন।"
msgid "Customize default options."
msgstr "স্বাভাবিক অপশনগুলো পরিবর্তন।"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "কমা দ্বারা আলাদা করা মান"
@@ -6766,7 +6764,7 @@ msgid "Maximum displayed SQL length"
msgstr "দেখানোর জন্য SQL এর সর্বোচ্চ দৈর্ঘ"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "ব্যবহারকারী উচ্চতর মান নির্ধারন করতে পারবে না"
@@ -6985,32 +6983,40 @@ msgstr "এগুলো সম্পাদনা, প্রতিলিপি
msgid "Where to show the table row links"
msgstr "টেবলের রো সংযোগ কোথায় দেখাবে"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr "টেবল এবং ডাটাবেইজের নাম সাজানোর জন্য স্বাভাবিক বিন্যাস ব্যবহার কর।"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "স্বাভাবিক বিন্যাস"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "শুধু আইকন, শুধু মাত্র টেক্সট বা উভয়ই ব্যবহার কর।"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "টেবল চলাচলের বার"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "HTTP স্থানান্তরের গতি বাড়ানোর জন্য জিজিপ আউটপুট বাফারিং ব্যবহার কর।"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "জিজিপ আউটপুট বাফারিং"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -7018,19 +7024,19 @@ msgstr ""
"[kbd]দক্ষ[/kbd]- যেমন স্তম্ভ যদি সময়,দিন, দিনসময়্ এবং সময়কাল হয় তবে অধমূখী অন্যথায় "
"উর্দ্ধ মুখী।"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "গুছানোর স্বাভাবিক বিন্যাস"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "MySQL ডাটাবেইজে স্থীর সংযোগ ব্যবহার কর।"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "স্থীর সংযোগ"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -7039,11 +7045,11 @@ msgstr ""
"phpMyAdmin কনফিগারেশনের কোন একটি storage table পাওয়া না গেলে ডাটাবেইজের বিশদ "
"গঠন যেখানে দেখানো হয় সেখানে প্রদর্শিত সর্তকতা অকার্যকর কর।"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "phpMyAdmin কনফিগারেশনের storage table পাওয়া যাচ্ছে না"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -7051,11 +7057,11 @@ msgstr ""
"MySQL library এবং সার্ভরের পার্থক্য পাওয়া গেলে যে স্বাভাবিক সর্তক বার্তা প্রদর্শিত "
"হয় তা অকার্যকর কর।"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "সার্ভার/লাইব্রেরীর পার্থক্যের জন্য সতর্ক বার্তা"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -7063,27 +7069,27 @@ msgstr ""
"যদি কোন টেবলের স্তম্ভের নামে MySQL এর রির্জাভড ওর্য়াড ব্যবহার করা হয় তবে গঠন "
"পাতায় যে সর্তকবার্তা প্রদর্শন করা হয় তা অকার্যকর কর।"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "MySQL এর রির্জাভড ওর্য়াড সর্তকতা"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "ম্যানু ট্যাব কিভাবে প্রদর্শন করবে"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "বিভিন্ন ধরনের কাজের সংযোগ কিভাবে প্রদর্শন করবে"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "BLOB এবং BINARY টেবল সম্পাদনা অ-অনুমোদিত।"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "বাইনারী স্তম্ভ সংরক্ষন কর"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7093,128 +7099,128 @@ msgstr ""
"storage)লাগবে, অন্যথায় অনুসন্ধান হিস্টোরী দেখানোর জন্য JS-routines ব্যবহৃত হবে। "
"( উইন্ডো বন্ধ করলে যা নষ্ট হয়ে যাবে)"
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "অনুসন্ধানের স্থায়ী হিস্টোরী"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "হিস্টোরীতে কতগুলো অনুসন্ধান থাকবে।"
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "অনুসন্ধান হিস্টোরীর দৈর্ঘ্য"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr "বর্ণরাশি পরিবর্তনে কোন ফাংশন ব্যবহৃত হবে তা নির্বাচন করুন।"
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "রের্কডিং ইঞ্জিন"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "যখন টেবল ব্রাউজ করা হবে, টেবলের সজ্জা মনে রাখবে।"
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "টেবলের সজ্জা মনে রাখবে"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "গুছানোর স্বাভাবিক বিন্যাস"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr "প্রতি X cells শিরোনাম পুনরায় দেখাবে, [kbd]০[/kbd] এটি অকার্যকর করবে।"
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "শিরোনাম পুনরাবৃত্তি"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "গ্রীড সম্পাদনা: trigger action"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "সর্ম্পক দেখানোর স্থম্ভ"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "সার্ভারের প্রর্দশন অপশনগুলো।"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "গ্রীড সম্পাদনা: সম্পাদনকৃত সব সেল একত্রে সংরক্ষন কর"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "সার্ভারে রফতানী সংরক্ষনের ডিরেক্টরী।"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "সংরক্ষনের ডিরেক্টরী"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "ব্যবহৃত না হলে থালি রাখ।"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "হোস্ট অনুমোদনের বিন্যাস"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "স্বাভাবিকভাবে থাকার জন্য খালি রাখুন।"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "হোস্ট অনুমোদনের নিয়ম"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "পাসওয়ার্ডবিহীন লগইনের অনুমোদন"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "রুট লগইনের অনুমোদন"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "সেশনের মান"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
"যথন এইছটিটিপি প্রমানীকরণ ব্যবহার হবে তখন প্রদর্শনের জন্য প্রাথমিক এইছটিটিপি "
"প্রমানীকরণ নাম।"
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP রাজ্য"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7223,19 +7229,19 @@ msgstr ""
"কনফিগ ফাইলের পথ [a@http://swekey.com]SweKey hardware authentication[/a] "
"(ডকুমেন্ট রুটে পাওয়া যায়নি; সাম্ভাব্য: /etc/swekey.conf)।"
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey কনফিগ ফাইল"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "ব্যবহারের জন্য প্রমাণীকরনের পদ্ধতী।"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "প্রমাণীকরণের ধরন"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7243,11 +7249,11 @@ msgstr ""
"না করার জন্য খালি রাখুন [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
"a] সাহায্যের জন্য, দেখুন:[kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "বুকর্মাক টেবল"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7255,31 +7261,31 @@ msgstr ""
"স্তম্ভের মন্তব্য/মাইমের ধরন না দেখানোর জন্য খালি রাখুন, দেখুন:[kbd]pma_column_info[/"
"kbd]।"
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "স্তম্ভ্ তথ্যের টেবল"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "সংকুচিত MySQL সার্ভারের সংযোগ।"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "সংকুচিত সংযোগ"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "সার্ভারে কিভাবে সংযোগ করবে, যদি না জানেন [kbd]tcp[/kbd] রাখেন।"
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "সংযোগের ধরন"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "নিয়ন্ত্রক ব্যবহারকারীর পাসওর্য়াড"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7287,11 +7293,11 @@ msgstr ""
"একটি বিশেষ MySQL ব্যবহারকারী সীমিত অধিকার সহ কনফিগার করা হয়েছে, আরো তথ্যের জন্য "
"দেখুন [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]।"
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "নিয়ন্ত্রক ব্যবহারকারী"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7299,11 +7305,11 @@ msgstr ""
"কনফিগারেশন মজুদ (configuration storage) করার জন্য অন্য একটি হোস্ট; না থাকলে খালি "
"রাখুন।"
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "হোস্ট নিয়ন্ত্রন"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7312,15 +7318,15 @@ msgstr ""
"কনফিগারেশন মজুদ (configuration storage) করার জন্য অন্য একটি হোস্ট; না থাকলে খালি "
"রাখুন।"
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "নিয়ন্ত্রন পোর্ট"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "ডাটাবেইজের regular expression (PCRE) মিলকরন লুকাও।"
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7328,15 +7334,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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA ব্যবহার অকার্যকর"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "ডাটাবেইজ লুকাও"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7344,23 +7350,23 @@ msgstr ""
"SQL অনুসন্ধানের হিস্টোরী সুবিধা দিতে না চাইলে খালি রাখুন, দেখুন: [kbd]pma_history[/"
"kbd]।"
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL অনুসন্ধানের হিস্টোরী টেবল"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "MySQL সার্ভারের হোস্ট নাম।"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "সার্ভরের হোস্ট নাম"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "লগআউট URL"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7368,17 +7374,17 @@ msgstr ""
"ডাটাবেইজে রক্ষিত টেবলের তথ্যের সংখ্যা সীমিত করন, পুরাতন তথ্য স্বয়ংক্রীয়ভাবে মুছে "
"যাবে।"
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "মজুদ করার জন্য সর্বো্চ্চ সংখ্যক টেবলের তথ্যের সংখ্য"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "সহায়ক এর অবস্থা দেখুন"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7389,13 +7395,13 @@ msgid ""
msgstr ""
"পিডিএফ গঠনের সমর্থন না দেওয়ার জন্য খালি রাখুন, দেখুন:[kbd]pma_pdf_pages[/kbd]।"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "টেক্সএরিয়া স্তম্ভ"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7405,15 +7411,15 @@ msgid ""
"[kbd]pma__central_columns[/kbd]."
msgstr "পিডিএফ গঠন সমর্থনের জন্য খালি রাখুন, দেখুন: [kbd]pma_table_coords[/kbd]।"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "পাসওর্য়াডহীন সংযোগের চেষ্টা কর।"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "পাসওর্য়াডহীন সংযোগ কর"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7425,29 +7431,29 @@ msgstr ""
"শুধু ওগুলোর নাম দেন এবং শেষে[kbd]*[/kbd] ব্যবহার করুন alphabetical ভাবে সাজানোর "
"জন্য।"
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "শুধু তালিকার ডাটাবেইজ দেখাও"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "খালি রাখুন যদি কনফিগ প্রমাণীকরণ ব্যবহার না করেন।"
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "কনফিগ প্রমাণীকরণের পাসওর্য়াড"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "পিডিএফের গঠন: টেবলের পাতা"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7457,20 +7463,20 @@ msgstr ""
"phpmyadmin.net/pma/pmadb]pmadb[/a] দেখুন। সমর্থন না করলে খালি রাখুন। দেখুন: "
"[kbd]phpmyadmin[/kbd]।"
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "ডাটাবেইজের নাম"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr "যে পোর্টে MySQL সার্ভার শুনছে, স্বাভাবিকটির জন্য খালি রাখুন।"
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "সার্ভারের পোর্ট"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7478,11 +7484,11 @@ msgstr ""
"যদি টেবলের পছন্দগুলো বি্ভিন্ন সেশনে \"persistent\" স্থায়ীভাবে রাখতে না চান খালি "
"রাখুন, দেখুন: [kbd]pma_table_uiprefs[/kbd]।"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "সাময়িককালে ব্যবহৃত টেবল"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7494,13 +7500,13 @@ msgstr ""
"যদি টেবলের পছন্দগুলো বি্ভিন্ন সেশনে \"persistent\" স্থায়ীভাবে রাখতে না চান খালি "
"রাখুন, দেখুন: [kbd]pma_table_uiprefs[/kbd]।"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "চলকসমূহ"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7508,11 +7514,11 @@ msgstr ""
"না করার জন্য খালি রাখুন [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a]সাহায্যের জন্য, দেখুন:[kbd]pma__relation[/kbd]।"
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "আন্তসর্ম্পক টেবল"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7520,43 +7526,43 @@ msgstr ""
"উদাহরণের জন্য [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]authentication types [/a] দেখুন।"
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "সাইনঅন সেশনের নাম"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "সাইনঅন URL"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr "কোন সকেটে MySQL সার্ভার শুনছে, স্বাভাবিকটির জন্য।"
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "সার্ভারের সকেট"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "MySQL সার্ভারে সংযোগের জন্য SSL কার্যকর কর।"
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "SSL ব্যবহার কর"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
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:693
+#: libraries/config/messages.inc.php:695
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "পিডিএফের গঠন: table coordinates"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7564,11 +7570,11 @@ msgstr ""
"স্তম্ভ বর্ণনার টেবল, সমর্থন দিতে না চাইলে খালি রাখুন; দেখুন: [kbd]pma_table_info[/"
"kbd]।"
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "স্তম্ভের টেবল দেখাও"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7576,11 +7582,11 @@ msgstr ""
"যদি টেবলের পছন্দগুলো বি্ভিন্ন সেশনে \"persistent\" স্থায়ীভাবে রাখতে না চান খালি "
"রাখুন, দেখুন: [kbd]pma_table_uiprefs[/kbd]।"
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "UI পছন্দ রাখর টেবল"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7588,11 +7594,11 @@ msgstr ""
"যখন একটি ডাটাবেইজ তৈরী হবে তখন একটি DROP DATABASE IF EXISTS লেখা লগের প্রথম "
"লাইনে যুক্ত হবে।"
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE যোগ কর"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7600,11 +7606,11 @@ msgstr ""
"যখন লগ একটি টেবল তৈরী হবে তখন একটি DROP TABLE IF EXISTS লেখা লগের প্রথম লাইনে "
"যুক্ত হবে।"
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "DROP TABLE যোগ কর"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7612,21 +7618,21 @@ msgstr ""
"যখন একটি ভিউ তৈরী হবে তখন একটি DROP VIEW IF EXISTS লেখা লগের প্রথম লাইনে যুক্ত "
"হবে।"
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "DROP VIEW যোগ কর"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"একটি statements এর তালিকা তৈরী করুন যা সংস্করন তৈরীর জন্য স্বয়ংক্রীয় ভাবে ব্যবহৃত "
"হবে।"
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "ট্রেকের জন্য Statements"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7634,21 +7640,21 @@ msgstr ""
"SQL অনুসন্ধান ট্রেকিং সমর্থন না দেওয়ার জন্য খালি রাখুন, দেখুন: [kbd]pma_tracking[/"
"kbd]।"
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL অনুসন্ধান ট্রেকিং টেবল"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr "ট্রেকিং ব্যবস্থা টেবল এবং ভিউ এর সংস্করন স্বয়ংক্রীয় ভাবে তৈরী করবে।"
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "স্বয়ংক্রীয়ভাবে সংস্করন তৈরী কর"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7656,33 +7662,33 @@ msgstr ""
"ব্যবহারকারীর নির্ধারন (preferences) ডাটাবেইজে মজুদ করতে না চাইলে খালি রাখুন, "
"দেখুন:[kbd]pma_userconfig[/kbd]।"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "ব্যবহারকারীর নির্ধারন (preferences) মজুদ করার টেবল"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "টেবল ব্যবহার"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "ব্যাবহারকারীর দলের টেবল"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7690,15 +7696,15 @@ msgstr ""
"ব্যবহারকারীর নির্ধারন (preferences) ডাটাবেইজে মজুদ করতে না চাইলে খালি রাখুন, "
"দেখুন:[kbd]pma_userconfig[/kbd]।"
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "কনফিগ প্রমাণীকরণের জন্য ব্যবহারকারী"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7706,21 +7712,21 @@ msgstr ""
"ব্যবহারকারীর জন্য সার্ভারের সহজবোধ্য বিবরণ। হোস্ট নামটি দেখাবার জন্য খালি রাখতে "
"পারেন।"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "সার্ভারের কথ্য নাম"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
#, 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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "সবগুলো রো প্রর্দশন করার অনুমতি"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7730,80 +7736,80 @@ msgstr ""
"কারন পাসওয়ার্ডটি কনফিগারেশন ফাইলে লেখা আছে; এটা একই কমান্ড সরাসরি কার্যকর করার "
"ক্ষমতা খর্ব করে না।"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "পাসওর্য়াড পরিবর্তনের ফর্ম দেখাও"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "ডাটাবেইজ তৈরীর ফর্ম দেখাও"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, 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:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "টেবলের মন্তব্য"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr "সব টেবলের প্রস্তুত সময় প্রর্দশনের স্তম্ভ দেখাবে বা লুকাবে।"
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "প্রস্তুতের সময় দেখাও"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr "সব টেবলের আপডেট সময় প্রর্দশনের স্তম্ভ দেখাবে বা লুকাবে।"
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "সর্বশেষ আপডেটের সময় দেখাও"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr "সব টেবলের সর্বশেষ পরীক্ষার সময় প্রর্দশনের স্তম্ভ দেখাবে বা লুকাবে।"
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "সর্বশেষ পরীক্ষার সময় দেখাও"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr "সম্পাদনা/ইনর্সাটের সময় টাইপ ফিল্ড দেখাবে কিনা তা নির্ধারন করুন।"
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "ক্ষেত্রের ধরন দেখাও"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "ফাংশন ক্ষেত্রটি সম্পাদনা/ইনর্সাট অবস্থায় দেখাবে।"
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "ফাংশন ক্ষেত্র দেখাও"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "আভাস দেখাবে অথবা না।"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "আভাস দেখাও"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7811,50 +7817,50 @@ msgstr ""
"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] আউটপুট সংযোগ "
"দেখাও।"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "phpinfo() সংযোগ দেখাও"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "MySQL সার্ভরের বিশদ তথ্য দেখাও"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "নিধার্রণ করুন phpMyAdmin দ্বারা প্রস্তুতকৃত SQL অনুসন্ধান প্রদর্শন করবে কিনা।"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "SQL অনুসন্ধান দেখাও"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "পেশ করার পর অনুসন্ধান বক্সটি পর্দায় থাকবে কিনা।"
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "অনুসন্ধান বক্সটি রাখ"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr "ডাটাবেইজ এবং টেবলের পরিসংখ্যান দেখাও (জায়গা ব্যবহৃত হবে)।"
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "পরিসংখ্যান দেখাও"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr "ব্যবহৃত টেবল চিহ্নিত কর এবং লক্ড টেবল সহ ডাটাবেইজগুলো দেখাবার ব্যবস্থা কর।"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "লকড টেবল এড়িয়ে যাও"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7862,11 +7868,11 @@ msgid ""
"detected."
msgstr "যদি Suhosin পাওয়া যায় তবে একটি সর্তক বার্তা প্রদর্শন করবে।"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin সতর্কবার্তা"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7879,13 +7885,13 @@ msgstr ""
"যদি কোন টেবলের স্তম্ভের নামে MySQL এর রির্জাভড ওর্য়াড ব্যবহার করা হয় তবে গঠন "
"পাতায় যে সর্তকবার্তা প্রদর্শন করা হয় তা অকার্যকর কর।"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "লগইন কুকির বৈধতা"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7897,11 +7903,11 @@ msgstr ""
"সম্পাদনার সময়, টেক্সটএরিয়া (স্তম্ভ) আকৃতি এই মানটি SQL অনুসন্ধানের টেক্সটএরিয়া (*২) "
"এবং অনুসন্ধান উইন্ডো (*১.২৫) প্রভাব ফেলবে।"
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "টেক্সএরিয়া স্তম্ভ"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7913,31 +7919,31 @@ msgstr ""
"সম্পাদনের সময়, টেক্সটএরিয়ার আকৃতি (রো) এই মানটি SQL অনুসন্ধানের টেক্সটএরিয়া (*২) "
"এবং অনুসন্ধান উইন্ডো (*১.২৫) প্রভাব ফেলবে।"
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "টেক্সটএরিয়ার রোসমূহ"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr "একটি ডাটাবেইজ নিবার্চন করা হলে ব্রাউজার উইন্ডোর শিরোনাম।"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "কিছু নির্বাচিত না থাকলে ব্রাউজার উইন্ডোর শিরোনাম।"
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "স্বাভাবিক শিরোনাম"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "একটি সার্ভার নিবার্চন করা হলে ব্রাউজারের শিরোনাম।"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "একটি টেবল নির্বাচন করা হবে ব্রাউজার উইন্ডোর শিরোনাম।"
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7948,27 +7954,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:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "বিশ্বস্ত প্রক্সির তালিকা IP allow/deny এর জন্য"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr "সার্ভরের আপলোড ডিরেক্টরি যেখানে আমদানির ফাইল রাখা যাবে।"
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "আপলোড ডিরেক্টরি"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "সমস্ত ডাটাবেইজের ভিতর খোঁজার অনুমতি।"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "ডাটাবেইজে খুঁজার ব্যবহার কর"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7976,26 +7982,26 @@ msgstr ""
"যদি অকার্যকর থাবে, ব্যবহারকারী নীচের কোন অপশন সেট করতে পারেব না, ডান দিকের "
"চেকবক্স পর্যন্ত।"
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "সেটিংসে উন্নয়নকারী টেবটি কার্যকর করুন"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "সর্বশেষ সংস্করনের জন্য খুঁজে দেখ"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "নতুন কোন সংস্করন আছে কিনা তা phpMyAdmin page এ পরীক্ষা করে দেখবে।"
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8003,30 +8009,30 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "ব্যাবহারকারীর নাম"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "পাসওর্য়াড"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -8034,52 +8040,52 @@ msgstr ""
"জিপ [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] সংকোচন আমদানি "
"রফতানীর জন্য কার্যকর কর।"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "জিপ"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "ভুল সর্ম্পকিত প্রতিবেদন দাখিল কর"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL query"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8107,44 +8113,44 @@ msgstr "HTTP প্রমাণীকরণ"
msgid "Signon authentication"
msgstr "সাইনঅন প্রমাণীকরণ"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV LOAD DATA ব্যবহার করছে"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "ওপেন অফিসের স্প্রেডসীট"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "দ্রুত"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "পরিবর্তন"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "ডাটাবেইজ রফতানী অপশন"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "মাইক্রোসফট এক্সেলের জন্য CSV"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "মাইক্রোসফট ওর্য়াড ২০০০"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "ওপেন অফিস টেক্সট"
@@ -13863,15 +13869,31 @@ msgstr "বুকমার্ক \"%s\" দেখার জন্য স্ব
msgid "Showing as PHP code"
msgstr "পিএইছপি কোড দেখাচ্ছে"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"এই নির্বাচনে কোন অনন্য স্তম্ভ নাই। সম্পাদনা, চেকবক্স, প্রতিলিপি এবং মুছার ব্যবস্থা কাজ "
"করবে না।"
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"এই নির্বাচনে কোন অনন্য স্তম্ভ নাই। সম্পাদনা, চেকবক্স, প্রতিলিপি এবং মুছার ব্যবস্থা কাজ "
+"করবে না।"
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "টেবল `%s` এর ইনডেক্সে সমস্যা আছে"
@@ -15206,6 +15228,10 @@ msgstr "মন্তব্য:"
msgid "Drag to reorder"
msgstr "পুনবিন্যাসের জন্য টানুন"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "শুরুর স্তম্ভ:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "স্বম্ভ নির্বাচন করুন (একটি হলেও):"
diff --git a/po/br.po b/po/br.po
index 05d076e722..97c619c900 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-03-28 11:07+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Breton %s:"
msgstr "Reked SQL ouzh an diaz roadennoù %s :"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Kas ar reked"
@@ -3640,25 +3641,25 @@ msgstr "O tiskouez ar sined"
msgid "Delete bookmark"
msgstr "Klask"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3700,9 +3701,9 @@ msgstr[0] "%s glotadenn en daolenn %s"
msgstr[1] "%s klotadenn en daolenn %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3761,16 +3762,16 @@ msgstr "Silañ"
msgid "Search this table"
msgstr "Klask en diaz roadennoù"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Kregiñ"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3778,8 +3779,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Kent"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3787,8 +3788,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "War-lerc'h"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3799,8 +3800,9 @@ msgstr "Fin"
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3907,16 +3909,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Evit ar re zo diuzet :"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3924,7 +3926,7 @@ msgstr "Evit ar re zo diuzet :"
msgid "Check All"
msgstr "Askañ pep tra"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Stumm da voullañ"
@@ -4028,11 +4030,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4098,8 +4100,8 @@ msgstr "Diverket eo bet an alc'hwez kentidik."
msgid "Index %s has been dropped."
msgstr "Diverket eo bet ar meneger %s."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4117,7 +4119,7 @@ msgstr ""
"bezañ dilamet."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Servijer"
@@ -4129,16 +4131,16 @@ msgid "View"
msgstr "Gwelet"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4150,10 +4152,10 @@ msgid "Structure"
msgstr "Framm"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4161,19 +4163,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Klask"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4182,7 +4184,7 @@ msgid "Insert"
msgstr "Ensoc'hañ"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4191,21 +4193,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Oberiadennoù"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4222,16 +4224,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4239,18 +4241,18 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Central columns"
msgstr "Bannoù evit an takadoù skrid CHAR"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4258,38 +4260,38 @@ msgstr "Bannoù evit an takadoù skrid CHAR"
msgid "Databases"
msgstr "Diazoù roadennoù"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr ""
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Eilañ"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -4314,7 +4316,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d linenn ensoc'het."
msgstr[1] "%1$d linenn ensoc'het."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4961,12 +4963,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Ment vrasañ : %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4977,28 +4979,28 @@ msgstr "Ment vrasañ : %s%s"
msgid "MySQL said: "
msgstr "respontet eo bet gant MySQL : "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Displegañ SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "N'eo ket dav displegañ SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Hep kod PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Krouiñ kod PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit mode"
msgctxt "Inline edit query"
@@ -5006,95 +5008,89 @@ msgid "Edit inline"
msgstr "Mod aozañ"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sul"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%A %d %B %Y da %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s deiz, %s eur, %s munut ha %s eilenn"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Mont d'an diaz roadennoù \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Direizhet eo an arc'hwel %s gant un draen anavezet, sellit ouzh %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Klikañ evit gwintañ"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Furchal en hoc'h urzhiataer :"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Diuzit e-mesk kavlec'h pellgargañ ar servijer web %s :"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Ar c'havlec'h treuzkas n'hall ket bezañ diraezet."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no files to upload!"
msgstr "N'eus restr ebet da enporzhiañ"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Goullonderiñ"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Seveniñ"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Moullañ"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Krouiñ"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Hizivadenn ziwezhañ"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Gwiriadenn ziwezhañ"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Sort"
-msgid "Start row:"
-msgstr "Urzhiañ"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5119,13 +5115,13 @@ msgstr "Ober gant an talvoud-mañ"
msgid "Rows"
msgstr "Linennoù"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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ù"
@@ -5577,7 +5573,7 @@ msgid "Set value: %s"
msgstr "Lakaat an talvoud da %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Adlakaat an talvoud dre ziouer"
@@ -6374,10 +6370,10 @@ msgstr "Personelaat ar mod merdeiñ"
msgid "Customize default options."
msgstr "Personelaat an dibarzhioù dre ziouer"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6932,7 +6928,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -7149,793 +7145,801 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Istitl eus an daolenn"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, 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:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relations"
msgid "Relational display"
msgstr "Darempredoù"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "Dibarzhioù diskwel ar servijerioù"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication method to use."
msgstr "Arventennoù dilesañ"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, 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:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Central columns table"
msgstr "Bannoù evit an takadoù skrid CHAR"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Tracked tables"
msgid "Favorites table"
msgstr "Taolennoù heuliet-pizh"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Implijout taolennoù"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Evezhiadennoù diwar-benn an daolenn"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show indexes"
msgid "Show hint"
msgstr "Diskouez menegerioù"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
+msgstr ""
+
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
+msgstr ""
+
+#: libraries/config/messages.inc.php:771
+msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 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:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
@@ -7947,11 +7951,11 @@ msgstr ""
"Ger-tremen implijet evit enrinegañ toupinoù pa vez gwiriekaet dre "
"[kbd]cookie[/kbd]"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
@@ -7964,51 +7968,51 @@ msgstr ""
"Ger-tremen implijet evit enrinegañ toupinoù pa vez gwiriekaet dre "
"[kbd]cookie[/kbd]"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -8016,52 +8020,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8069,34 +8073,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username:"
msgid "Proxy username"
msgstr "Anv implijer :"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password:"
msgid "Proxy password"
msgstr "Ger-tremen :"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -8108,51 +8112,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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8178,46 +8182,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Spreadsheet"
msgstr "Testenn Open Document"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Text"
@@ -13839,13 +13843,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -15152,6 +15164,12 @@ msgstr "Evezhiadenn"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Sort"
+msgid "Start row:"
+msgstr "Urzhiañ"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/bs.po b/po/bs.po
index b6b5c0ebd1..117357da2c 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-03-31 14:23+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Bosnian %s:"
msgstr "SQL upit na bazi %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Izvrši SQL upit"
@@ -3671,25 +3672,25 @@ msgstr "Pretraživanje"
msgid "Delete bookmark"
msgstr "Pretraživanje"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3731,9 +3732,9 @@ msgstr[0] "%s pogodaka unutar tabele %s"
msgstr[1] "%s pogodaka unutar tabele %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3799,16 +3800,16 @@ msgstr "Polja"
msgid "Search this table"
msgstr "Pretraživanje baze"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Početak"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3816,8 +3817,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Prethodna"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3825,8 +3826,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "Slijedeći"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3837,8 +3838,9 @@ msgstr "Kraj"
msgid "All"
msgstr "Sve"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows:"
@@ -3952,16 +3954,16 @@ msgid "Query took %01.4f seconds."
msgstr "Upit je trajao %01.4f sekundi"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Označeno:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3969,7 +3971,7 @@ msgstr "Označeno:"
msgid "Check All"
msgstr "Označi sve"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Za štampu"
@@ -4069,11 +4071,11 @@ msgstr "Podatci o prijavi"
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4140,8 +4142,8 @@ msgstr "Primarni ključ je obrisan."
msgid "Index %s has been dropped."
msgstr "Ključ %s je obrisan."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4157,7 +4159,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -4169,16 +4171,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4190,10 +4192,10 @@ msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4201,19 +4203,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Pretraživanje"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4222,7 +4224,7 @@ msgid "Insert"
msgstr "Novi zapis"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4231,21 +4233,21 @@ msgid "Privileges"
msgstr "Privilegije"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operacije"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4262,16 +4264,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Upit po primeru"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4279,18 +4281,18 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns"
msgstr "Dodaj/obriši kolonu"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4298,42 +4300,42 @@ msgstr "Dodaj/obriši kolonu"
msgid "Databases"
msgstr "Baze"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "Korisnik"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
#, fuzzy
msgid "Binary log"
msgstr "Binarni"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
#, fuzzy
msgid "Replication"
msgstr "Relacije"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Promjenljive"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Kodne strane"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -4358,7 +4360,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -5006,12 +5008,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5022,28 +5024,28 @@ msgstr ""
msgid "MySQL said: "
msgstr "MySQL kaže: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Objasni SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Preskoči objašnjavanje SQL-a"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "bez PHP koda"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Napravi PHP kod"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Add new field"
msgctxt "Inline edit query"
@@ -5051,96 +5053,90 @@ msgid "Edit inline"
msgstr "Dodaj novo polje"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ned"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. u %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dana, %s sati, %s minuta i %s sekundi"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "Dodaj novo polje"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Pređi na bazu \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "direkcija za slanje web servera "
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Direkcija koju ste izabrali za slanje nije dostupna."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Isprazni"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Štampaj"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Napravljeno"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Posljednja izmjena"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Posljednja provjera"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "Sub"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5165,13 +5161,13 @@ msgstr "Koristi ovu vrijednost"
msgid "Rows"
msgstr "Redova"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5620,7 +5616,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6336,10 +6332,10 @@ msgstr ""
msgid "Customize default options."
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV format"
@@ -6824,7 +6820,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -7027,888 +7023,896 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Promijeni redoslijed u tabeli"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
msgid "Table navigation bar"
msgstr "Opcije tabele"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Promjeni ime tabele u "
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, 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:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "Relaciona shema"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
msgid "For display Options"
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Vrijednost sesije"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Documentation"
msgid "Authentication method to use."
msgstr "Dokumentacija"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, 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:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
#, fuzzy
msgid "Connection type"
msgstr "Konekcije"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Bilo koji host"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Bilo koji host"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
#, fuzzy
msgid "Hide databases"
msgstr "Baza ne postoji"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
#, fuzzy
msgid "Server hostname"
msgstr "Izbor servera"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Dodaj/obriši kolonu"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Nemoj da mijenjaš lozinku"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Baza podataka"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
#, fuzzy
msgid "Server port"
msgstr "Izbor servera"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analiziraj tabelu"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Promjenljive"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
#, fuzzy
msgid "Relation table"
msgstr "Popravi tabelu"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
#, fuzzy
msgid "Server socket"
msgstr "Izbor servera"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Prikazujem komentare kolone"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Ime"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
msgid "Automatically create versions"
msgstr "Verzija servera"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Koristi tabele"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Koristi tabelu hosta"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Komentari tabele"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Prikaži informacije o PHP-u"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
msgid "Show field types"
msgstr "Prikaži tabele"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Prikaži mrežu"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
#, fuzzy
msgid "Show SQL queries"
msgstr "Prikaži kompletne upite"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
#, fuzzy
msgid "Show statistics"
msgstr "Statistike reda"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Dodaj/obriši kolonu"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Podrazumjevano"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7916,52 +7920,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7969,85 +7973,85 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
msgid "Proxy username"
msgstr "Korisničko ime:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Lozinka"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
msgid "Send error reports"
msgstr "Izbor servera"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Modifications have been saved"
msgid "Enable Zero Configuration mode"
@@ -8073,46 +8077,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Dokumentacija"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Opcije za izvoz baze"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV za MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -13915,13 +13919,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -15305,6 +15317,12 @@ msgstr "Komentari"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "Sub"
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/ca.po b/po/ca.po
index afd9a673f3..8eabf848dc 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-05-30 17:56+0200\n"
"Last-Translator: josep constanti \n"
"Language-Team: Catalan %s:"
msgstr "Consulta SQL a la base de dades %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Executa consulta"
@@ -3416,7 +3417,7 @@ msgstr "Actualitzar consulta desada"
msgid "Delete bookmark"
msgstr "Esborrar consultab desada"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3424,19 +3425,19 @@ msgstr ""
"El servidor no està responent (o el sòcol del servidor local MySQL no està "
"configurat correctament)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "El servidor no respon."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Comprova els permisos del directori que conté la base de dades."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Detalls…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
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 "
@@ -3478,9 +3479,9 @@ msgstr[0] "%1$s resultat a %2$s"
msgstr[1] "%1$s resultats a %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3534,28 +3535,28 @@ msgstr "Filtrar files"
msgid "Search this table"
msgstr "Cerca aquesta taula"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Inici"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Pàgina anterior"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Pàgina següent"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Darrera pàgina"
@@ -3564,8 +3565,9 @@ msgstr "Darrera pàgina"
msgid "All"
msgstr "Tot"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Nombre de files:"
@@ -3662,16 +3664,16 @@ msgid "Query took %01.4f seconds."
msgstr "La consulta tarda %01.4f segons."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Amb marca:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3679,7 +3681,7 @@ msgstr "Amb marca:"
msgid "Check All"
msgstr "Marcar-ho tot"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Imprimeix vista"
@@ -3775,11 +3777,11 @@ msgstr "No es troba la informació de Git!"
msgid "Open new phpMyAdmin window"
msgstr "Obrir nova finestra de phpMyAdmin"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Feu clic a la barra per desplaçar-se al principi d'aquesta pàgina"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "A partir d'aquest punt és necessari tenir el javascript activat!"
@@ -3843,8 +3845,8 @@ msgstr "S'ha esborrat la clau principal."
msgid "Index %s has been dropped."
msgstr "S'ha esborrat l'índex %s."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3862,7 +3864,7 @@ msgstr ""
"esborrar."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Servidor"
@@ -3874,16 +3876,16 @@ msgid "View"
msgstr "Vista"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3895,10 +3897,10 @@ msgid "Structure"
msgstr "Estructura"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3906,19 +3908,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Cerca"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3927,7 +3929,7 @@ msgid "Insert"
msgstr "Insereix"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3936,21 +3938,21 @@ msgid "Privileges"
msgstr "Permisos"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operacions"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Seguiment"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3967,16 +3969,16 @@ msgstr "Disparadors"
msgid "Database seems to be empty!"
msgstr "La base de dades sembla buida!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Consulta segons exemple"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rutines"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3984,16 +3986,16 @@ msgstr "Rutines"
msgid "Events"
msgstr "Esdeveniments"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Dissenyador"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Columnes centrals"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4001,38 +4003,38 @@ msgstr "Columnes centrals"
msgid "Databases"
msgstr "Bases de dades"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Usuaris"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Registre binari"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replicació"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variables"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Jocs de caràcters"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Complements"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Motors"
@@ -4057,7 +4059,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d fila inserida."
msgstr[1] "%1$d files inserides."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4734,12 +4736,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Una enumeració, triada de la llista de valors definits"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Màx: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4750,119 +4752,115 @@ msgstr "Màx: %s%s"
msgid "MySQL said: "
msgstr "MySQL diu: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Explica SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Salta l'explicació de l'SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Sense codi PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Crea codi PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Editar línia"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Diu"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d-%m-%Y a les %H:%M:%S"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dies, %s hores, %s minuts i %s segons"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Falta paràmetre:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Vés a la base de dades \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Prem per canviar"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Navega al teu ordinador:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
"Selecciona des del directori de pujada d'arxius del servidor web %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "No està disponible el directori indicat per pujar arxius."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "No hi ha files per pujar!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Buida"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Executar"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Imprimeix"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Creació"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Darrera actualització"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Darrera comprovació"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Fila d'inici:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Cerca:"
@@ -4885,13 +4883,13 @@ msgstr "Fes servir aquest valor"
msgid "Rows"
msgstr "Fila"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5317,7 +5315,7 @@ msgid "Set value: %s"
msgstr "Estableix valor: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Restaura el valor per defecte"
@@ -6065,10 +6063,10 @@ msgstr "Configura el mode de navegació."
msgid "Customize default options."
msgstr "Configura les opcions predeterminades."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6551,7 +6549,7 @@ 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:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Els usuaris no poden establir un valor més gran"
@@ -6767,34 +6765,42 @@ msgstr "Aquests són els enllaços a Edició, Còpia i Esborrat."
msgid "Where to show the table row links"
msgstr "Ón de mostrar els vincles de fila de taula"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Ordre natural"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Usa només icones, només text o bé ambdós."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Barra de navegació de taules"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "Memòria cau de sortida per GZip"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6802,19 +6808,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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Ordre de clasificació predeterminat"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Utilitza connexions persistents a bases de dades MySQL."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Connexions persistents"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6824,11 +6830,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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Falten taules de l'infraestructura de taules enllaçades de phpMyAdmin"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6836,11 +6842,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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Avís de diferència en servidor/llibreria"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6848,27 +6854,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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Avís de paraula reservada de MySQL"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Còm mostrar les pestanyes del menù"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Cóm mostrar diversos enllaços d'accions"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Desactiva l'edició en columnes tipus BLOB i BINARY."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Protegeix les columnes de contingut binari"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6879,106 +6885,106 @@ msgstr ""
"fan servir rutines JS per mostrar l'historial de consultes (es perd al "
"tancar la finestra)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Historial permanent de consultes"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Quàntes consultes s'han de desar a l'historial."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Tamany de l'historial de consultes"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Motor d'enregistrament"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Recordar l'ordenació de les taules"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
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:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Ordre de clasificació de la clau principal"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
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:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Repeteix capçeleres"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Edició de graella: disparador d'acció"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Relació a mostrar"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "Per les opcions de visualització"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
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:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Directori del servidor on pots desar les exportacions."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Directori de desades"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Deixa en blanc si no l'utilitzes."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Ordre d'autenticació del servidor"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Deixa en blanc per als predeterminats."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Regles d'autenticació del servidor"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Permetre connexions sense contrasenya"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Permet la connexió de root"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Zona horària de la sessió"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -6986,17 +6992,17 @@ msgstr ""
"Estableix el fus horari efectiu; possiblement diferent del del teu servidor "
"de base de dades"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
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:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "Domini HTTP"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7006,19 +7012,19 @@ msgstr ""
"maquinari SweKey[/a] (no trobat al teu arrel de documents; es recomana a: /"
"etc/swekey.conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "Arxiu de configuració SweKey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Mètode d'autenticació a usar."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Tipus d'autenticació"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7026,11 +7032,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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Taula de consultes desades"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7038,31 +7044,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:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Taula d'informació de columna"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Connexió comprimida al servidor MySQL."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Connexió comprimida"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Tipus de connexió"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Contrasenya de l'usuari de control"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7070,11 +7076,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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Usuari de control"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7082,11 +7088,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:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Servidor de control"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7096,15 +7102,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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Port de control"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Amagar les bases de dades que compleixin una expresió regular (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7112,15 +7118,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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Desactiva l'ús d'INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Amagar bases de dades"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7128,23 +7134,23 @@ msgstr ""
"Deixa en blanc per desactivar el suport d'historial de consultes SQL, "
"suggerit: [kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Taula d'historial de consultes SQL"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Nom del servidor ón MySQL és en marxa."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Nom del servidor"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL de desconnexió"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7152,15 +7158,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:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Màxim nombre de preferències de taules a desar"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "Taula de consultes QBE desades"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7168,11 +7174,11 @@ msgstr ""
"Deixa en blanc per desactivar el suport de consultes QBE desades, suggerit: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Taula de columnes centrals"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7180,15 +7186,15 @@ msgstr ""
"Deixa en blanc per desactivar el suport de columnes centrals, suggerit: "
"[kbd]pma__central_colums[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Intentar connectar sense contrasenya."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Connexió sense contrasenya"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7198,30 +7204,30 @@ msgstr ""
"servir als teus texts, ex.: usa [kbd]'my\\_db'[/kbd] i no [kbd]'my_db'[/"
"kbd]."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Mostra només les bases de dades de la llista"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Deixa en blanc si no utilitzes l'autenticació config."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Contrasenya autenticació config"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "Esquema PDF: taula de pàgines"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7232,22 +7238,22 @@ msgstr ""
"tenir informació més completa. Deixa en blanc per no utilitzar. Suggerit: "
"[kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nom de base de dades"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Port del servidor"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7255,11 +7261,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:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Taula usada recentment"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7267,11 +7273,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:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Taula preferida"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7279,11 +7285,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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Taula de relacions"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7291,33 +7297,33 @@ msgstr ""
"Consulta [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipus "
"d'autenticació[/a] per veure exemples."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Nom de sessió signon"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "URL signon"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Sócol del servidor"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Activa SSL per la connexió amb el servidor MySQL."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Usa SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7325,11 +7331,11 @@ msgstr ""
"Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Dissenyador i esquema PDF: taula de coordinades"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7337,11 +7343,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:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Taula de descripció de columnes"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7350,11 +7356,11 @@ msgstr ""
"d'interfase de taules entre sessions, suggerit: [kbd]pma__table_uiprefs[/"
"kbd]."
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Preferències d'interfase de taula"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7362,11 +7368,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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Afegir DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7374,11 +7380,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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Afegir DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7386,21 +7392,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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Afegir DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
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:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Instruccions a seguir"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7408,11 +7414,11 @@ msgstr ""
"Deixa en blanc per desactivar el suport de seguiment de consultes SQL, "
"suggerit: [kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Taula de seguiment de consultes SQL"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7420,11 +7426,11 @@ msgstr ""
"SI el mecanisme de seguiment crearà versions per a taules i vistes "
"automàticament."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Crear versions automàticament"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7432,11 +7438,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:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Taula de preferències de l'usuari"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7446,11 +7452,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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Taula d'usuaris"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7460,11 +7466,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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Taula de grups d'usuaris"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7472,15 +7478,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:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Taula d'elements de navegació amagada"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Usuari per autenticació config"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7488,20 +7494,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:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Nom explicatiu d'aquest servidor"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Permet mostrar totes les files"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7511,15 +7517,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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Mostra el formulari de canvi de contrasenya"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Mostra el formulari de creació de base de dades"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables."
@@ -7528,45 +7534,45 @@ msgstr ""
"Mostrar o amagar una columna amb la data i hora de creació per a totes les "
"taules."
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Comentaris de la taula"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
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:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Mostra el temps de creació"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
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:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Mostra data i hora de la darrera actualització"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
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:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Mostra el temps de la darrera comprovació"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7574,27 +7580,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:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Mostra tipus de camps"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Mostra els camps de funció en modes edició/inserció."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Mostra els camps de funció"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Mostrar o no ajudes."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Mostra ajudes"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7602,55 +7608,55 @@ msgstr ""
"Mostra l'enllaç a la sortida de [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Mostra l'enllaç a phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Mostra informació detallada del servidor MySQL"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
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:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Mostra consultes SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
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:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Mantenir el quadre de consultes"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Mostra estadístiques"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
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:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Salta taules bloquejades"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7658,11 +7664,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:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "avís Suoshin"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 "
@@ -7672,11 +7678,11 @@ msgstr ""
"establert de la variable de PHP session.gc_maxlifetime és menor que el de "
"`LoginCookieValidity`."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "Avís de validesa de la cookie d'autenticació"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7684,11 +7690,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:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Columnes per a textareas"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7696,32 +7702,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:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Files per a textareas"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
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:791
+#: libraries/config/messages.inc.php:793
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:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Títol per defecte"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
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:795
+#: libraries/config/messages.inc.php:797
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:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7733,27 +7739,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:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Llista de proxies confiables per autoritzar/prohibir IP"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Directori de pujades"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Permet cercar dins de tota la base de dades."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Usa cerca de base de dades"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7761,28 +7767,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:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Activa la pestanya del Desenvolupador en les opcions"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Comprova la darrera versió"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7794,11 +7800,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:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "URL del proxy"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7808,19 +7814,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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Nom d'usuari del proxy"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "La contrasenya per autenticar amb el proxy."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Contrasenya del proxy"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7828,35 +7834,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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
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:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Clau pùblica per a reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
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:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Clau privada per a reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
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:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Enviar informes d'error"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7864,11 +7870,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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr "Enter executa consultes a la consola"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7876,7 +7882,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:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Activa el mode Configuració Zero"
@@ -7902,44 +7908,44 @@ msgstr "Autenticació HTTP"
msgid "Signon authentication"
msgstr "autenticació Signon"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV usant LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Full de càlcul OpenDocument"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Ràpid"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Usuari"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Opcions d'exportació de bases de dades"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV per dades de MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Texte OpenDocument"
@@ -13719,16 +13725,33 @@ msgstr "Usar el preferit \"%s\" com a pàgina de cerca per defecte."
msgid "Showing as PHP code"
msgstr "Mostrant com a codi PHP"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"AquestLa selecció actual no conté una columna única. Els enllaços d'edició "
"de graella, checkbox, Editar, Copiar i Esborrar enllaços no estàn "
"disponibles."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"AquestLa selecció actual no conté una columna única. Els enllaços d'edició "
+"de graella, checkbox, Editar, Copiar i Esborrar enllaços no estàn "
+"disponibles."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemes amb els indexs de la taula `%s`"
@@ -14992,6 +15015,10 @@ msgstr "Comentari:"
msgid "Drag to reorder"
msgstr "Arrossega per reordenar"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Fila d'inici:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Tria les columnes (una com a mínim):"
diff --git a/po/ckb.po b/po/ckb.po
index ce13823ad2..83e01c9d99 100644
--- a/po/ckb.po
+++ b/po/ckb.po
@@ -7,9 +7,9 @@ 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-20 06:59-0400\n"
-"PO-Revision-Date: 2015-05-28 16:19+0200\n"
-"Last-Translator: Alan Hilal \n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"PO-Revision-Date: 2015-06-22 11:43+0200\n"
+"Last-Translator: Zrng Abdulla \n"
"Language-Team: Kurdish Sorani \n"
"Language: ckb\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 2.3-dev\n"
+"X-Generator: Weblate 2.4-dev\n"
#: changelog.php:37 license.php:28
#, php-format
@@ -302,7 +302,7 @@ msgid "Tracked tables"
msgstr "شوێنکەوتەی خشتە"
#: db_tracking.php:125 db_tracking.php:287 libraries/Menu.class.php:247
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:798
#: 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
@@ -328,7 +328,7 @@ msgid "Updated"
msgstr "بارکراوە"
#: db_tracking.php:129 js/messages.php:237 libraries/Menu.class.php:551
-#: libraries/Util.class.php:4386 libraries/config.values.php:104
+#: libraries/Util.class.php:4391 libraries/config.values.php:104
#: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101
#: libraries/server_status_processes.lib.php:94 libraries/tracking.lib.php:278
msgid "Status"
@@ -512,8 +512,8 @@ msgstr "زیادکردنی ئەندازەگەری"
#: gis_data_editor.php:407 js/messages.php:286
#: libraries/DbSearch.class.php:467 libraries/DisplayResults.class.php:1807
-#: libraries/Util.class.php:4885 libraries/browse_foreigners.lib.php:142
-#: libraries/core.lib.php:610 libraries/display_change_password.lib.php:109
+#: 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_import.lib.php:392 libraries/index.lib.php:44
@@ -542,8 +542,9 @@ msgstr "زیادکردنی ئەندازەگەری"
#: libraries/tracking.lib.php:532 libraries/tracking.lib.php:652
#: prefs_manage.php:277 prefs_manage.php:355
#: templates/columns_definitions/column_definitions_form.phtml:59
-#: templates/index_form.phtml:238 templates/table/selection_form.phtml:75
-#: view_create.php:276 view_operations.php:106
+#: templates/index_form.phtml:238 templates/startAndNumberOfRowsPanel.phtml:14
+#: templates/table/selection_form.phtml:75 view_create.php:276
+#: view_operations.php:106
msgid "Go"
msgstr "بڕۆ"
@@ -663,7 +664,7 @@ msgstr ""
msgid "Could not load the progress of the import."
msgstr "هەڵە لە بارکردنی ڕەوتی هاوردن"
-#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:735
+#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:738
#: libraries/export.lib.php:464
#: libraries/plugins/schema/Export_Relation_Schema.class.php:302
#: user_password.php:208
@@ -760,7 +761,7 @@ msgstr "پێشاندانی زانیاری php"
msgid "Version information:"
msgstr "زانیاری وەشان:"
-#: index.php:392 libraries/Util.class.php:429 libraries/Util.class.php:490
+#: 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/navigation/NavigationHeader.class.php:197
@@ -882,7 +883,7 @@ msgid ""
"issues."
msgstr ""
-#: js/messages.php:38 libraries/import.lib.php:125 sql.php:151
+#: js/messages.php:38 libraries/import.lib.php:125 sql.php:161
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "دەستەواژەکانی \"سڕینەوەی بنکەی زانیاری\" ناچالاککراوە."
@@ -1102,7 +1103,7 @@ msgstr "لە داواکاری"
msgid "Matched rows:"
msgstr "ریزە هاوتاکان:"
-#: js/messages.php:114 libraries/Util.class.php:638
+#: js/messages.php:114 libraries/Util.class.php:641
#, fuzzy
#| msgid "SQL query"
msgid "SQL query:"
@@ -1147,12 +1148,12 @@ msgid "Other"
msgstr "هیتر"
#. l10n: Thousands separator
-#: js/messages.php:131 libraries/Util.class.php:1460
+#: js/messages.php:131 libraries/Util.class.php:1463
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:133 libraries/Util.class.php:1462
+#: js/messages.php:133 libraries/Util.class.php:1465
msgid "."
msgstr "."
@@ -1256,40 +1257,40 @@ msgid "Processes"
msgstr "پڕۆسەکان"
#. l10n: shortcuts for Byte
-#: js/messages.php:167 libraries/Util.class.php:1404
+#: js/messages.php:167 libraries/Util.class.php:1407
msgid "B"
msgstr "بایت"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:168 libraries/Util.class.php:1406
+#: js/messages.php:168 libraries/Util.class.php:1409
#: libraries/server_status_monitor.lib.php:217
msgid "KiB"
msgstr "کیلۆبایت"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:169 libraries/Util.class.php:1408
+#: js/messages.php:169 libraries/Util.class.php:1411
#: libraries/display_export.lib.php:702
#: libraries/server_status_monitor.lib.php:218
msgid "MiB"
msgstr "مێگابایت"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:170 libraries/Util.class.php:1410
+#: js/messages.php:170 libraries/Util.class.php:1413
msgid "GiB"
msgstr "گێگابایت"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:171 libraries/Util.class.php:1412
+#: js/messages.php:171 libraries/Util.class.php:1415
msgid "TiB"
msgstr "تێرابایت"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:172 libraries/Util.class.php:1414
+#: js/messages.php:172 libraries/Util.class.php:1417
msgid "PiB"
msgstr "پێتابایت"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:173 libraries/Util.class.php:1416
+#: js/messages.php:173 libraries/Util.class.php:1419
msgid "EiB"
msgstr "ئێکسابایت"
@@ -1308,7 +1309,7 @@ msgid "Traffic"
msgstr "هاتووچوو"
#: js/messages.php:179 libraries/Menu.class.php:585
-#: libraries/Util.class.php:4390 libraries/server_status_monitor.lib.php:257
+#: libraries/Util.class.php:4395 libraries/server_status_monitor.lib.php:257
msgid "Settings"
msgstr "ڕێکخستنەکان"
@@ -1606,8 +1607,8 @@ msgstr ""
#: js/messages.php:264 libraries/Menu.class.php:350
#: libraries/Menu.class.php:453 libraries/Menu.class.php:581
-#: libraries/Util.class.php:4389 libraries/Util.class.php:4404
-#: libraries/Util.class.php:4421 libraries/config/messages.inc.php:236
+#: libraries/Util.class.php:4394 libraries/Util.class.php:4409
+#: libraries/Util.class.php:4426 libraries/config/messages.inc.php:236
#: libraries/display_import.lib.php:105
#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:238
#: setup/frames/menu.inc.php:26
@@ -1677,7 +1678,7 @@ msgstr ""
msgid "Cancel"
msgstr "لابردن"
-#: js/messages.php:290 libraries/Header.class.php:456
+#: js/messages.php:290 libraries/Header.class.php:455
#, fuzzy
#| msgid "Change settings"
msgid "Page-related settings"
@@ -1756,7 +1757,7 @@ msgstr "لەبەرگرتنەوەی بنکەی دراو"
msgid "Changing Charset"
msgstr "گۆڕینی گورزەپیت"
-#: js/messages.php:314 libraries/Util.class.php:3234
+#: js/messages.php:314 libraries/Util.class.php:3237
msgid "Enable foreign key checks"
msgstr ""
@@ -1791,9 +1792,9 @@ msgstr "پێناسەی فرمانی پاشەکەوتکراو پێویستە دە
#: js/messages.php:328 libraries/DisplayResults.class.php:4857
#: libraries/DisplayResults.class.php:5115 libraries/Menu.class.php:342
#: libraries/Menu.class.php:444 libraries/Menu.class.php:577
-#: libraries/Util.class.php:3675 libraries/Util.class.php:3676
-#: libraries/Util.class.php:4388 libraries/Util.class.php:4403
-#: libraries/Util.class.php:4420 libraries/config/messages.inc.php:230
+#: libraries/Util.class.php:3680 libraries/Util.class.php:3681
+#: libraries/Util.class.php:4393 libraries/Util.class.php:4408
+#: libraries/Util.class.php:4425 libraries/config/messages.inc.php:230
#: libraries/display_export.lib.php:167 libraries/rte/rte_list.lib.php:146
#: libraries/server_privileges.lib.php:2085
#: libraries/server_privileges.lib.php:2164
@@ -1844,11 +1845,11 @@ msgstr "پێشاندانی سندوقی داواکاری"
#: js/messages.php:343 libraries/Console.class.php:88
#: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3450
#: libraries/DisplayResults.class.php:4839 libraries/Index.class.php:723
-#: libraries/Util.class.php:664 libraries/Util.class.php:1218
-#: libraries/Util.class.php:3673 libraries/Util.class.php:3674
+#: libraries/Util.class.php:667 libraries/Util.class.php:1221
+#: 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:775
+#: libraries/config/messages.inc.php:777
#: libraries/server_user_groups.lib.php:119
#: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179
msgid "Edit"
@@ -2639,63 +2640,63 @@ msgid "December"
msgstr "کانونی یەکەم"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1620
+#: js/messages.php:655 libraries/Util.class.php:1623
msgid "Jan"
msgstr "کانوونی دووەم"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1622
+#: js/messages.php:657 libraries/Util.class.php:1625
msgid "Feb"
msgstr "شوبات"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1624
+#: js/messages.php:659 libraries/Util.class.php:1627
msgid "Mar"
msgstr "مارت"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1626
+#: js/messages.php:661 libraries/Util.class.php:1629
msgid "Apr"
msgstr "نیسان"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1628
+#: js/messages.php:663 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "مایس"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1630
+#: js/messages.php:665 libraries/Util.class.php:1633
msgid "Jun"
msgstr "حوزیران"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1632
+#: js/messages.php:667 libraries/Util.class.php:1635
msgid "Jul"
msgstr "تەموز"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1634
+#: js/messages.php:669 libraries/Util.class.php:1637
msgid "Aug"
msgstr "ئاب"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1636
+#: js/messages.php:671 libraries/Util.class.php:1639
msgid "Sep"
msgstr "ئەیلول"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1638
+#: js/messages.php:673 libraries/Util.class.php:1641
msgid "Oct"
msgstr "تشرینی یەکەم"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1640
+#: js/messages.php:675 libraries/Util.class.php:1643
msgid "Nov"
msgstr "تشرینی دووەم"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1642
+#: js/messages.php:677 libraries/Util.class.php:1645
msgid "Dec"
msgstr "کانوونی یەکەم"
@@ -2733,32 +2734,32 @@ msgid "Sun"
msgstr "یەک شەم"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1647
+#: js/messages.php:698 libraries/Util.class.php:1650
msgid "Mon"
msgstr "دوو شەم"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1649
+#: js/messages.php:700 libraries/Util.class.php:1652
msgid "Tue"
msgstr "سێ شەم"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1651
+#: js/messages.php:702 libraries/Util.class.php:1654
msgid "Wed"
msgstr "چوار شەم"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1653
+#: js/messages.php:704 libraries/Util.class.php:1656
msgid "Thu"
msgstr "پێنج شەم"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1655
+#: js/messages.php:706 libraries/Util.class.php:1658
msgid "Fri"
msgstr "هەینی"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1657
+#: js/messages.php:708 libraries/Util.class.php:1660
msgid "Sat"
msgstr "شەممە"
@@ -2928,7 +2929,7 @@ msgid "Please enter a valid HEX input"
msgstr "%d ژمارەی ڕیزی نادروستە."
#: js/messages.php:785 libraries/Message.class.php:199
-#: libraries/Util.class.php:624 libraries/core.lib.php:245
+#: 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
msgid "Error"
@@ -3028,7 +3029,7 @@ msgid "Requery"
msgstr "داواکاری"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:790
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3083,7 +3084,7 @@ msgstr ""
msgid "Explain"
msgstr "ڕوونکردنەوەی سیكوێڵ"
-#: libraries/Console.class.php:216 libraries/Util.class.php:1291
+#: libraries/Console.class.php:216 libraries/Util.class.php:1294
#: libraries/sql.lib.php:278
msgid "Profiling"
msgstr ""
@@ -3242,8 +3243,8 @@ msgstr "شاردنەوەی نیشاندەرەکان"
msgid "Count:"
msgstr "ستون"
-#: libraries/Console.class.php:332 libraries/Util.class.php:1260
-#: libraries/config/messages.inc.php:777
+#: libraries/Console.class.php:332 libraries/Util.class.php:1263
+#: libraries/config/messages.inc.php:779
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3416,7 +3417,7 @@ msgstr ""
msgid "SQL query on database %s:"
msgstr "پرسی SQL لەسەر بنکەی دراوەی %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "ناردنی داواکاری"
@@ -3450,25 +3451,25 @@ msgstr "پیشاندانی شوێندۆز"
msgid "Delete bookmark"
msgstr "گەڕانی خشتە"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3508,9 +3509,9 @@ msgstr[0] ""
msgstr[1] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3569,28 +3570,28 @@ msgstr "پاڵێو"
msgid "Search this table"
msgstr "گەڕان لە بنکەی دراو"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "دەسپێکردن"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "پێشتر"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "دواتر"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "کۆتایی"
@@ -3599,8 +3600,9 @@ msgstr "کۆتایی"
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3705,16 +3707,16 @@ msgid "Query took %01.4f seconds."
msgstr "داواکاریەکە %01.4f چرکەی خایاند"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "لەگەڵ پەڕگەی دەستنیشانکراو:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3722,7 +3724,7 @@ msgstr "لەگەڵ پەڕگەی دەستنیشانکراو:"
msgid "Check All"
msgstr "هەڵبژاردنی هەموو"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "پێشاندان بۆ چاپکردن"
@@ -3821,11 +3823,11 @@ msgstr "زانیاری وەشان"
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3889,8 +3891,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3906,7 +3908,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "سێرڤەر"
@@ -3918,16 +3920,16 @@ msgid "View"
msgstr "نیشاندان"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3939,10 +3941,10 @@ msgid "Structure"
msgstr "پێکهاتە"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3950,19 +3952,19 @@ msgid "SQL"
msgstr "سیكوێڵ"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "گەڕان"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3971,7 +3973,7 @@ msgid "Insert"
msgstr "تێخستن"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3980,21 +3982,21 @@ msgid "Privileges"
msgstr "تایبەتمەندێتیەکان"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "کارەکان"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4011,16 +4013,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr "پێدەچێت بنکە زانیاریەکە بەتاڵ بێت!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "داواکاری"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "ڕۆتینەکان"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4028,18 +4030,18 @@ msgstr "ڕۆتینەکان"
msgid "Events"
msgstr "چالاکیەکان"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "شێوەساز"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add columns"
msgid "Central columns"
msgstr "ستونەکان زیادبکە"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4047,38 +4049,38 @@ msgstr "ستونەکان زیادبکە"
msgid "Databases"
msgstr "بنکە زانیاریەکان"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "بەکارهێنەرەکان"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "تۆماری دوودانەیی"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "دووپاتکاری"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "گۆڕاوەکان"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "گورزەپیتەکان"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "پێوەکراوەکان"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "بزوێنەرەکان"
@@ -4103,7 +4105,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4739,12 +4741,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4755,28 +4757,28 @@ msgstr ""
msgid "MySQL said: "
msgstr "مایئێسكیوئێڵ دەڵێت: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "ڕوونکردنەوەی سیكوێڵ"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "پشتگوێخستنی ڕوونکردنەوەی سیكوێڵ"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "بەبێ پی ئێچ پی کۆد"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "پی ئێچ پی کۆد دروست بکە"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit Index"
msgctxt "Inline edit query"
@@ -4784,95 +4786,89 @@ msgid "Edit inline"
msgstr "چاکردنی نیشاندەر"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "ڕادەی لەدەستچوو:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no recent tables"
msgid "There are no files to upload!"
msgstr "هیچ خشتەیەکی تازە نیە"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "بەتاڵ"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "درووستکردن"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "دواترین نوێکردنەوە"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "دواترین پشکنین"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start row"
-msgid "Start row:"
-msgstr "ڕیزی سەرەتا"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "گەڕان:"
@@ -4895,13 +4891,13 @@ msgstr "ئەم نرخە هەڵبژێرە"
msgid "Rows"
msgstr "خانە"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5335,7 +5331,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6011,10 +6007,10 @@ msgstr ""
msgid "Customize default options."
msgstr "کردارەکانی ئەنجامی داواکاری"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6470,7 +6466,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6671,847 +6667,855 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table comments"
msgid "Table navigation bar"
msgstr "تێبینیەکانی خشتە"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "No data found"
msgid "Relational display"
msgstr "هیچ زانیاریەک نەدۆزراوە"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Table comments"
msgid "For display Options"
msgstr "تێبینیەکانی خشتە"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Compress connection"
msgid "Compress connection to MySQL server."
msgstr "پەستانی پەیوەندی"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "پەستانی پەیوەندی"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "جۆری پەیوەندی"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "شاردنەوەى بنکەی دراو"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "چوونەدەرەوە بەستەر"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add columns"
msgid "Central columns table"
msgstr "ستونەکان زیادبکە"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Connect without password"
msgid "Try to connect without password."
msgstr "پەیوەندی بەبێ وشەی نهێنی"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "پەیوەندی بەبێ وشەی نهێنی"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "تەنها نیشاندانی لیستی بنکەی دراو"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "ناوی بنکەی دراو"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "گۆڕاوەکان"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "بەکارهێنانی SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "خشتە بەکار ببە"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "تێبینیەکانی خشتە"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
#, fuzzy
msgid "Show SQL queries"
msgstr "نیشاندانی پرسگەی SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "نیشاندانی سەرژمێری"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "سەردێری بنەڕەت"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7519,52 +7523,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "بەکارهێنانی گەڕان لە بنکەی دراو"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "پشکنین بۆ دۆزینەوەی نوێترین وەشان"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7572,84 +7576,84 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "ناوی بەکارهێنەر"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "وشەی نهێنی"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Local monitor configuration incompatible"
msgid "Enable Zero Configuration mode"
@@ -7675,44 +7679,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "خێرا"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "ڕاسپێراو"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -13173,13 +13177,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -14454,6 +14466,12 @@ msgstr "لێدوان"
msgid "Drag to reorder"
msgstr "ڕایکێشە بۆ ڕیزکردنەوە"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start row"
+msgid "Start row:"
+msgstr "ڕیزی سەرەتا"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "ستونەکان هەڵبژێرە (لانی کەم یەک):"
@@ -15804,7 +15822,7 @@ msgstr ""
#: libraries/advisory_rules.txt:459
msgid "MyISAM concurrent inserts"
-msgstr ""
+msgstr "MyISAM زیادكردنی یاریدهدهر"
#: libraries/advisory_rules.txt:462
msgid "Enable {concurrent_insert} by setting it to 1"
diff --git a/po/cs.po b/po/cs.po
index 2f88d9500a..7749f13873 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-05-14 15:44+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Czech %s:"
msgstr "SQL dotaz na databázi %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Provést dotaz"
@@ -3414,27 +3415,27 @@ msgstr "Upravit uložené vyhledávání"
msgid "Delete bookmark"
msgstr "Odstranit uložené vyhledávání"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
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:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Server neodpovídá."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
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:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Podrobnosti…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
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."
@@ -3477,9 +3478,9 @@ msgstr[1] "%1$s odpovídající záznamy v %2$s"
msgstr[2] "%1$s odpovídajících záznamů v %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3533,28 +3534,28 @@ msgstr "Filtrovat řádky"
msgid "Search this table"
msgstr "Vyhledávání v této tabulce"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "První"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Předchozí"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Následující"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Poslední"
@@ -3563,8 +3564,9 @@ msgstr "Poslední"
msgid "All"
msgstr "Všechno"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Počet řádků:"
@@ -3661,16 +3663,16 @@ msgid "Query took %01.4f seconds."
msgstr "Dotaz trval %01.4f sekund."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Zaškrtnuté:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3678,7 +3680,7 @@ msgstr "Zaškrtnuté:"
msgid "Check All"
msgstr "Zaškrtnout vše"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Náhled pro tisk"
@@ -3775,11 +3777,11 @@ msgstr "Chybí informace o revizi Gitu!"
msgid "Open new phpMyAdmin window"
msgstr "Otevřít nové okno phpMyAdmina"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Klikněte na pruh pro posunutí stránky nahoru"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Pro použití phpMyAdmina musíte mít zapnutý Javascript!"
@@ -3843,8 +3845,8 @@ msgstr "Primární klíč byl odstraněn."
msgid "Index %s has been dropped."
msgstr "Klíč %s byl odstraněn."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3862,7 +3864,7 @@ msgstr ""
"odstraněn."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -3874,16 +3876,16 @@ msgid "View"
msgstr "Pohled"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3895,10 +3897,10 @@ msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3906,19 +3908,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Vyhledávání"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3927,7 +3929,7 @@ msgid "Insert"
msgstr "Vložit"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3936,21 +3938,21 @@ msgid "Privileges"
msgstr "Oprávnění"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Úpravy"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Sledování"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3967,16 +3969,16 @@ msgstr "Spouště"
msgid "Database seems to be empty!"
msgstr "Databáze se zdá být prázdná!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Dotaz"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rutiny"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3984,16 +3986,16 @@ msgstr "Rutiny"
msgid "Events"
msgstr "Události"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Návrhář"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Centrální sloupce"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4001,38 +4003,38 @@ msgstr "Centrální sloupce"
msgid "Databases"
msgstr "Databáze"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Uživatelé"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Binární log"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replikace"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Proměnné"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Znakové sady"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Rozšíření"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Úložiště"
@@ -4060,7 +4062,7 @@ msgstr[0] "Byl vložen %1$d řádek."
msgstr[1] "Byly vloženy %1$d řádky."
msgstr[2] "Bylo vloženo %1$d řádků."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4717,12 +4719,12 @@ msgstr "Řetězec s proměnnou délkou (0 - 65535), požívá binární porovná
msgid "An enumeration, chosen from the list of defined values"
msgstr "Výčtový typ, umožňující výběr ze zadaných hodnot"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Maximální velikost: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4733,118 +4735,114 @@ msgstr "Maximální velikost: %s%s"
msgid "MySQL said: "
msgstr "MySQL hlásí: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Vysvětlit SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Bez vysvětlení SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Bez PHP kódu"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Vytvořit PHP kód"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Upravit zde v řádku"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ned"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%a %d. %b %Y, %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dnů, %s hodin, %s minut a %s sekund"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Chybějící parametr:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Přejít na databázi „%s“."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funkčnost %s je omezena známou chybou, viz %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Klikněte pro přepnutí"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Procházet váš počítač:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Zvolte soubor z adresáře pro upload na serveru %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Adresář určený pro upload souborů nemohl být otevřen."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Nebyl zvolen žádný soubor pro nahrání!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Vyprázdnit"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Spustit"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Vytisknout"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Vytvořeno"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Poslední změna"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Poslední kontrola"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Počáteční řádek:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Vyhledat:"
@@ -4867,13 +4865,13 @@ msgstr "Použít tuto hodnotu"
msgid "Rows"
msgstr "Řádků"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5295,7 +5293,7 @@ msgid "Set value: %s"
msgstr "Nastavena hodnota: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Obnovit výchozí hodnotu"
@@ -6037,10 +6035,10 @@ msgstr "Přizpůsobí režim prohlížení."
msgid "Customize default options."
msgstr "Přizpůsobí výchozí nastavení."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6516,7 +6514,7 @@ 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:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Uživatelé nemohou nastavit větší hodnotu"
@@ -6731,32 +6729,40 @@ msgstr "Jedná se o odkazy Upravit, Kopírovat a Odstranit."
msgid "Where to show the table row links"
msgstr "Kde zobrazit odkazy s akcemi při procházení"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Přirozené pořadí"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Zda se mají zobrazit pouze ikony, nebo pouze text, případně obojí."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Lišta při procházení tabulky"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "Mezipaměť pro GZip výstup"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6764,19 +6770,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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Výchozí pořadí řazení"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Používat trvalé připojení k databázím MySQL."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Trvalé připojení"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6785,11 +6791,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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6797,11 +6803,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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Varování o rozdílných verzích"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6809,27 +6815,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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Varování o klíčových slovech MySQL"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Jak zobrazit panely nabídky"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Jak zobrazit akční odkazy"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Zakáže úpravu polí BLOB a BINARY."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Chránit binární pole"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6840,104 +6846,104 @@ msgstr ""
"historie Java Scriptové rutiny (se zavřením okna ztratíte předchozí "
"historii)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Nepřetržitá historie dotazů"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Kolik dotazů se má držet v historii."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Délka historie dotazů"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Nástroje pro konverzi znakových sad"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Pamatovat si řazení u tabulkek"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
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:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Výchozí způsob řazení primárního klíče"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
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:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Opakovat záhlaví"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Úpravy v mřížce: činnost pro spuštění"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Relační zobrazení"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "Pro zobrazení Nastavení"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
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:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Adresář na serveru pro ukládání exportů."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Adresář pro ukládání"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Pokud tuto volbu nepoužíváte, nechte ji prázdnou."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Pořadí ověřování hostitelů"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Nechte volbu prázdnou pro výchozí nastavení."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Pravidla ověřování hostitelů"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Povolit přihlášení bez hesla"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Povolit přihlašování uživatele root"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Časová zóna relace"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -6945,15 +6951,15 @@ msgstr ""
"Nastaví efektivní časovou zónu; pravděpodobně odlišnou od nastavení vašeho "
"databázového serveru"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
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:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP doméma"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -6963,19 +6969,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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "Konfigurační soubor SweKey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Která přihlašovací metoda se má použít."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Typ přihlašování"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -6983,11 +6989,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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Tabulka záložek"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -6995,32 +7001,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:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Tabulka informací o polích"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Zda se má komprimovat připojení k MySQL serveru."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Komprimovat připojení"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Typ připojení"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Heslo kontrolního uživatele"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7028,21 +7034,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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Kontrolní uživatel"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
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:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Kontrolní host"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7052,15 +7058,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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Kontrolní port"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
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:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7068,15 +7074,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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Zakázat použití INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Skrýt databáze"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7084,23 +7090,23 @@ msgstr ""
"Nechte prázdné pro vypnutí SQL historie, výchozí hodnota [kbd]pma__history[/"
"kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Tabulka pro historii SQL dotazů"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Jméno počítače, kde běží MySQL server."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Jméno serveru"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL pro odhlášení"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7108,15 +7114,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:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Nejvyšší počet uložených nastavení tabulek"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "Tabulka s uloženými dotazy"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7124,11 +7130,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:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Centrální sloupcová tabulka"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7136,15 +7142,15 @@ msgstr ""
"Nechte prázdné pro vypnutí podpory centrálních sloupců, například: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Pokusit se připojit bez hesla."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Připojit bez hesla"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7153,30 +7159,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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Zobrazit jen vybrané databáze"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
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:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Heslo pro přihlašování config"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF schémata: tabulka stránek"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7187,21 +7193,21 @@ msgstr ""
"ponecháte prázdné, budou tyto funkce vypnuté. Doporučená hodnota: "
"[kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Jméno databáze"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Port serveru"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7209,11 +7215,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:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Naposledy použité tabulky"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7225,11 +7231,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:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Oblíbené tabulky"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7237,11 +7243,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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Tabulka s relacemi"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7249,33 +7255,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:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Jméno signon session"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "URL pro přihlášení"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Socket serveru"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Použít SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7283,11 +7289,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:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Designér a PDF schéma: tabulka souřadnic"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7295,11 +7301,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:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Tabulka s popisem polí"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7307,11 +7313,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:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Tabulka pro nastavení rozhraní"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7319,43 +7325,43 @@ msgstr ""
"Jestli přidat příkaz DROP DATABASE IF EXISTS jako první při vytváření "
"databáze."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Přidat DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Přidat DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Přidat DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
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:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Sledované příkazy"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7363,22 +7369,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:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Tabulka pro sledování SQL dotazů"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
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:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Automaticky vytvářet verze"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7386,11 +7392,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:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Tabulka pro uživatelská nastavení"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7400,11 +7406,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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Tabulka uživatelů"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7414,11 +7420,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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Tabulka skupin uživatelů"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7426,34 +7432,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:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Tabulka skrývání navigace"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Uživatel pro přihlašování config"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
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:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Dlouhé jméno tohoto serveru"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Umožní zobrazit všechny řádky"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7464,15 +7470,15 @@ msgstr ""
"neomezuje možnost spustit daný příkaz přímo, jen ovlivňuje zobrazení "
"formuláře."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Zobrazit formulář pro změnu hesla"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Zobrazit formulář pro vytvoření databáze"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables."
@@ -7480,71 +7486,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:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Komentář k tabulce"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
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:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Zobrazit čas vytvoření"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
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:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Zobrazit čas poslední změny"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
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:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Zobrazit čas poslední kontroly"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
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:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Zobrazit typy polí"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Zobrazí seznam funkcí v editačním režimu."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Zobrazit seznam fukncí"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Zda zobrazit nápovědu nebo ne."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Zobrazit nápovědu"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7552,53 +7558,53 @@ msgstr ""
"Zobrazí link na výstup funkce [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Zobrazit odkaz na phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Zobrazí podrobné informace o MySQL serveru"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
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:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Zobrazit SQL dotazy"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
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:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Zachovat pole pro dotaz"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Zobrazit statistiky"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
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:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Přeskočit zamčené tabulky"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7606,11 +7612,11 @@ msgid ""
"detected."
msgstr "Vypne varování na hlavní stránce pokud se používá Suhosin."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Varování o Suhosinu"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 "
@@ -7620,11 +7626,11 @@ msgstr ""
"hodnota PHP nastavení session.gc_maxlifetime menší než hodnota "
"'LoginCookieValidity'."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "Varování o platnosti přihlašovací cookie"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7636,11 +7642,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:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Sloupců v textové oblasti"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7652,31 +7658,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:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Řádků v textové oblasti"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
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:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Titulek prohlížeče pokud není nic vybráno."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Výchozí titulek"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "Titulek prohlížeče pokud je vybraný server."
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "Titulek prohlížeče pokud je vybraná tabulka."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7688,27 +7694,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:798
+#: libraries/config/messages.inc.php:800
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:799
+#: libraries/config/messages.inc.php:801
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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Adresář pro nahrávání"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Povolit prohledávání přes celou databázi."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Použít prohledávání databáze"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7716,26 +7722,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:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Povolit záložku Pro vývojáře v nastaveních"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Zkontrolovat nejnovější verzi"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7747,11 +7753,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:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Adresa proxy"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7762,19 +7768,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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Uživatel proxy"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "Heslo pro přihlášení k serveru proxy."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Heslo proxy"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7782,35 +7788,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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Zadejte veřejný klíč pro službu reCaptcha."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Veřejný klíč reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Zadejte soukromý klíč pro službu reCaptcha."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Soukromý klíč reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
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:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Odeslat chybová hlášení"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7818,11 +7824,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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr "Enter spustí dotazy v konzoli"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7830,7 +7836,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:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Umožnit mód Automatické konfigurace"
@@ -7856,44 +7862,44 @@ msgstr "Přihlašování přes HTTP"
msgid "Signon authentication"
msgstr "Přihlašování signon"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV pomocí LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Sešit OpenDocument"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Rychlý"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Vlastní"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Nastavení exportu databází"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV pro MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Text OpenDocument"
@@ -13622,15 +13628,31 @@ msgstr "Pro procházení databáze je použit oblíbený dotaz „%s\"."
msgid "Showing as PHP code"
msgstr "Zobrazuji jako PHP kód"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Aktuální výběr neobsahuje unikátní klíč. Editování v mřížce, zaškrtávací "
"políčka nebo odkazy na editaci a mazání proto nejsou k dispozici."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Aktuální výběr neobsahuje unikátní klíč. Editování v mřížce, zaškrtávací "
+"políčka nebo odkazy na editaci a mazání proto nejsou k dispozici."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problémy s klíči v tabulce „%s\""
@@ -14936,6 +14958,10 @@ msgstr "Komentář:"
msgid "Drag to reorder"
msgstr "Uspořádejte přetažením."
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Počáteční řádek:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Zvolte pole (alespoň jedno):"
diff --git a/po/cy.po b/po/cy.po
index f0882cb51f..f5d755a246 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-11-14 19:10+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Welsh %s:"
msgstr "Ymholiad SQL ar gronfa ddata %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Cyflwyno Ymholiad"
@@ -3721,27 +3722,27 @@ msgstr "Dangos clustnod"
msgid "Delete bookmark"
msgstr "Dilëwch berthynas"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Dyw'r gweinydd ddim yn ymateb"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Manylion…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3784,9 +3785,9 @@ msgstr[0] "%s ergyd mewn tabl %s"
msgstr[1] "%s ergyd mewn tabl %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3849,16 +3850,16 @@ msgstr "Hidlydd"
msgid "Search this table"
msgstr "Chwilio yn y gronfa ddata"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Dechrau"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3866,8 +3867,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Cynt"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3875,8 +3876,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "Nesaf"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3887,8 +3888,9 @@ msgstr "Diwedd"
msgid "All"
msgstr "Pob"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of columns"
msgid "Number of rows:"
@@ -4000,16 +4002,16 @@ msgid "Query took %01.4f seconds."
msgstr "Cymerodd yr ymholiad %01.4f eiliad"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Gyda'r dewis:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -4017,7 +4019,7 @@ msgstr "Gyda'r dewis:"
msgid "Check All"
msgstr "Dewis Pob"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Argraffu golwg"
@@ -4118,11 +4120,11 @@ msgstr "Gwybodaeth y fersiwn"
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4188,8 +4190,8 @@ msgstr "Cafodd yr allwedd gynradd ei gollwng."
msgid "Index %s has been dropped."
msgstr "Cafodd indecs %s ei ollwng."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4207,7 +4209,7 @@ msgstr ""
"ohonyn nhw."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Gweinydd"
@@ -4219,16 +4221,16 @@ msgid "View"
msgstr "Dangos"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4240,10 +4242,10 @@ msgid "Structure"
msgstr "Strwythur"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4251,19 +4253,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Chwilio"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4272,7 +4274,7 @@ msgid "Insert"
msgstr "Mewnosod"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4281,21 +4283,21 @@ msgid "Privileges"
msgstr "Breintiau"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Gweithrediadau"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Tracio"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4312,16 +4314,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr "Mae'r gronfa ddata yn ymddangos yn wag!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Ymholiad"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rheolweithiau"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4329,18 +4331,18 @@ msgstr "Rheolweithiau"
msgid "Events"
msgstr "Digwyddiadau"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Dyluniwr"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Central columns"
msgstr "Ychwanegu/Dileu colofnau"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4348,40 +4350,40 @@ msgstr "Ychwanegu/Dileu colofnau"
msgid "Databases"
msgstr "Cronfeydd Data"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "Defnyddiwr"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Log deuaidd"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Dyblygiad"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Newidynnau"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Setiau nod"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Peiriannau"
@@ -4412,7 +4414,7 @@ msgstr[1] "%1$d rhes wedi'u hychwanegu."
msgstr[2] ""
msgstr[3] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -5065,12 +5067,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Uchaf: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5081,28 +5083,28 @@ msgstr "Uchaf: %s%s"
msgid "MySQL said: "
msgstr "Dywedodd MySQL: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Esbonio SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Sgipio Esbonio SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Heb God PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Creu Cod PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Print view"
msgctxt "Inline edit query"
@@ -5110,102 +5112,96 @@ msgid "Edit inline"
msgstr "Argraffu golwg"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sul"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y am %I:%M %p"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s diwrnod, %s awr, %s munud a %s eiliad"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Rheolweithiau"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Neidio i gronfa ddata \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Pwyso i ddewis"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "cyfeiriadur lanlwytho y gweinydd gwe"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
"Does dim modd cyrraedd y cyfeiriadur a osodoch chi ar gyfer gwaith a "
"lanwlythwyd."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no configured servers"
msgid "There are no files to upload!"
msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Gwagu"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Argraffu"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Cread"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Diweddariad diwethaf"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Gwiriad diwethaf"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Showing rows"
-msgid "Start row:"
-msgstr "Yn dangos rhesi"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5230,13 +5226,13 @@ msgstr "Defnyddiwch y gwerth hwn"
msgid "Rows"
msgstr "Rhesi"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5688,7 +5684,7 @@ msgid "Set value: %s"
msgstr "Gosod gwerth: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Adfer gwerth diofyn"
@@ -6416,10 +6412,10 @@ msgstr "Modd adferiad awtomatig"
msgid "Customize default options."
msgstr "Gweithrediadau canlyniadau ymholiad"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6919,7 +6915,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -7124,411 +7120,419 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Pennawd y tabl"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Ailenwi tabl i"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, 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:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Trwsio edafedd"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Colofn dangosydd perthynol"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Relational display column"
msgid "For display Options"
msgstr "Colofn dangosydd perthynol"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authenticating…"
msgid "Authentication method to use."
msgstr "Yn dilysu…"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, 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:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Unrhyw westeiwr"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Unrhyw westeiwr"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
#, 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:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Cuddio cronfeydd data"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Tabl hanes ymholiadau SQL"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
#, 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:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Enw gwesteiwr y gweinydd"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL allgofnodi"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Central columns table"
msgstr "Ychwanegu/Dileu colofnau"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "Ceisiwch â chysylltu heb gyfrinair"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Cysylltwch heb gyfrinair"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
#, fuzzy
#| msgid ""
#| "n use MySQL wildcard characters (% and _), escape them if you want use ir "
@@ -7542,359 +7546,359 @@ msgstr ""
"ydych am eu defnyddio'n llythrennol, h.y. defnyddiwch 'my\\_db' ac nid "
"'my_db'"
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Dangoswch gronfeydd data a restrir yn unig"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
#, 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:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Cyfrinair am 'config auth'"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "enw cronfa ddata"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Dadansoddi tabl"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Newidynnau"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Soced gweinydd"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Defnyddio SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "Sgena PDF: cyfesurynnau tabl"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Dangos tabl colofnau"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Ychwanegu DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Ychwanegu DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Ychwanegu DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Datganiadau i'w tracio"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Tabl tracio ymholiadau SQL"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Defnyddiwch Dablau"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Defnyddiwch Dabl Gwesteiwyr"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Dangos ffurflen newid cyfrinair"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Dangos ffurflen creu cronfa ddata"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Sylwadau tabl"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show versions"
msgid "Show Creation timestamp"
msgstr "Dangos fersiynau"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
#| msgid "Show function fields"
msgid "Show field types"
msgstr "Dangos meysydd swyddogaeth"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Dangos meysydd swyddogaeth"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Dangos grid"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -7906,117 +7910,117 @@ msgstr ""
"Dangos cysylltiad i allbwn [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Dangos cysylltiad i phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Dangos ymholiadau SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "in query"
msgid "Retain query box"
msgstr "mewn ymholiad"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Dangos ystadegau"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Neidio tablau ar glo"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Textarea columns"
msgstr "Ychwanegu/Dileu colofnau"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
#| msgid "Default table tab"
msgid "Default title"
msgstr "Tab tabl diofyn"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -8024,52 +8028,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Cyfeiriadur lanlwytho"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Defnyddio chwiliad cronfa ddata"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Gwiriwch y fersiwn diweddaraf"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8077,86 +8081,86 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "Enw defnyddiwr"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Cyfrinair"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Execute bookmarked query"
msgid "Enter executes queries in console"
msgstr "Gweithredu ymholiad a glustnodwyd"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Failed to write file to disk."
msgid "Enable Zero Configuration mode"
@@ -8190,50 +8194,50 @@ msgstr "Yn dilysu…"
msgid "Signon authentication"
msgstr "Yn dilysu…"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Taenlen Open Document"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Lliw cwstwm"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
#, fuzzy
#| msgid "Databases statistics"
msgid "Database export options"
msgstr "Ystadegau cronfeydd data"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV ar gyfer MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -13997,13 +14001,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -15373,6 +15385,12 @@ msgstr "Sylw"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Showing rows"
+msgid "Start row:"
+msgstr "Yn dangos rhesi"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/da.po b/po/da.po
index c03c0c16a2..cf00ff4dd7 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-06-10 23:07+0200\n"
"Last-Translator: Aputsiaĸ Niels Janussen \n"
"Language-Team: Danish %s:"
msgstr "SQL-forespørgsel til database %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Send forespørgsel"
@@ -3413,7 +3414,7 @@ msgstr "Opdater bogmærke"
msgid "Delete bookmark"
msgstr "Slet bogmærke"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3421,19 +3422,19 @@ msgstr ""
"Serveren svarer ikke (eller den lokale servers socket er ikke korrekt "
"konfigureret)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Serveren svarer ikke."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Tjek venligst privilegier for mappen som indeholder databasen."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Detaljer…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Forbindelse for kontrolbruger som defineret i din konfiguration slog fejl."
@@ -3474,9 +3475,9 @@ msgstr[0] "%1$s sammenfald i %2$s"
msgstr[1] "%1$s sammenfald i %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3530,28 +3531,28 @@ msgstr "Filtrer rækker"
msgid "Search this table"
msgstr "Søg i denne tabel"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Start"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Forrige"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Næste"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Slut"
@@ -3560,8 +3561,9 @@ msgstr "Slut"
msgid "All"
msgstr "Alle"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Antal rækker:"
@@ -3658,16 +3660,16 @@ msgid "Query took %01.4f seconds."
msgstr "Forespørgsel tog %01.4f sekunder."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Med det markerede:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3675,7 +3677,7 @@ msgstr "Med det markerede:"
msgid "Check All"
msgstr "Vælg alle"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Udskriv"
@@ -3771,11 +3773,11 @@ msgstr "Information om Git mangler!"
msgid "Open new phpMyAdmin window"
msgstr "Åbn nyt phpMyAdmin vindue"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Klik på bjælken for at rulle til sidens top"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Herefter skal JavaScript være slået til!"
@@ -3839,8 +3841,8 @@ msgstr "Primærnøglen er slettet."
msgid "Index %s has been dropped."
msgstr "Indeks %s er blevet slettet."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3858,7 +3860,7 @@ msgstr ""
"sikkert fjernes."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -3870,16 +3872,16 @@ msgid "View"
msgstr "Visning"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3891,10 +3893,10 @@ msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3902,19 +3904,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Søg"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3923,7 +3925,7 @@ msgid "Insert"
msgstr "Indsæt"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3932,21 +3934,21 @@ msgid "Privileges"
msgstr "Privilegier"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operationer"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Sporing"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3963,16 +3965,16 @@ msgstr "Triggers/udløsere"
msgid "Database seems to be empty!"
msgstr "Database ser ud til at være tom!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Foresp. via eks"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rutiner"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3980,16 +3982,16 @@ msgstr "Rutiner"
msgid "Events"
msgstr "Hændelser"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Designer"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Centerkolonner"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3997,38 +3999,38 @@ msgstr "Centerkolonner"
msgid "Databases"
msgstr "Databaser"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Brugere"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Binær log"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replikation"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variable"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Tegnsæt"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Udvidelsesmoduler"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Lagring"
@@ -4053,7 +4055,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d række sat ind."
msgstr[1] "%1$d rækker sat ind."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4724,12 +4726,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "En optælling, udvalgt fra listen med definerede værdier"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Maksimum størrelse: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4740,120 +4742,116 @@ msgstr "Maksimum størrelse: %s%s"
msgid "MySQL said: "
msgstr "MySQL returnerede: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Forklar SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Spring over Forklar SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Uden PHP-kode"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Fremstil PHP-kode"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Redigér indlejret"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "søn"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %m %Y kl. %H:%M:%S"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dage, %s timer, %s minutter og %s sekunder"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Manglende parameter:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Hop til database \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Klik for at skifte"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Gennemse din computer:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Vælg fra %s - webserverens upload-mappe:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Mappen du har sat til upload-arbejde kan ikke findes."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Der er ikke nogen filer at uploade!"
# By "Empty", if this is an action, it should translate to "Tøm" but if it's a
# state it should translate to "Tom".
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Tøm"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Udfør"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Udskriv"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Oprettelse"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Sidste opdatering"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Seneste tjek"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Startrække:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Søg:"
@@ -4876,13 +4874,13 @@ msgstr "Brug denne værdi"
msgid "Rows"
msgstr "Rækker"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5309,7 +5307,7 @@ msgid "Set value: %s"
msgstr "Indstil værdien %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Gendan standardværdi"
@@ -6058,10 +6056,10 @@ msgstr "Tilpas for gennemsynstilstand."
msgid "Customize default options."
msgstr "Tilpas standardindstillinger."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV (kommasepareret)"
@@ -6545,7 +6543,7 @@ 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:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Brugere kan ikke sætte en højere værdi"
@@ -6759,32 +6757,40 @@ msgstr "Dette er Ret, Kopi og Slet links."
msgid "Where to show the table row links"
msgstr "Hvor links til tablerækker skal vises"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Naturlig rækkefølge"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Brug kun ikoner, kun tekst eller begge."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Tabelbaseret navigationsbjælke"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "Buffering af GZip-output"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6792,19 +6798,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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Standard sorteringsrækkefølge"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Brug vedvarende forbindelser til MySQL databaser."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Vedvarende forbindelser"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6814,11 +6820,11 @@ msgstr ""
"hvis nogen af de påkrævede tabeller i phpMyAdmin configuration storage ikke "
"kunne findes."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Manglende phpMyAdmin configuration storage tabeller"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6826,11 +6832,11 @@ msgstr ""
"Deaktiver standardadvarslen som vises, hvis der registreres en forskel "
"mellem MySQL-biblioteket og serveren."
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Advarsel om server/bibliotek-forskel"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6838,27 +6844,27 @@ msgstr ""
"Deaktiver standardadvarslen, som vises på struktursiden, hvis kolonnenavne i "
"en tabel er reserverede MySQL-ord."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Advarsel om MySQL-reserverede ord"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Sådan vises menufanerne"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Sådan vises forskellige hændelseshenvisninger"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Tillad ikke redigering af BLOB og BINARY kolonner."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Beskyt binære kolonner"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6868,104 +6874,104 @@ msgstr ""
"configuration storage). Hvis deaktiveret bruges JS-rutiner til at vise "
"forespørgselshistorik (mistes når vinduet lukkes)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Permanent forespørgselshistorie"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Hvor mange forespørgsler er gemt i historikken."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Længde på forespørgselshistorik"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Omkodningsværktøj"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Husk tabellens sortering"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
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:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Forvalgt sorteringsrækkefølge for primær nøgle"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
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:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Gentag overskrifter"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Gitter-redering: trigger/udløser-handling"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Relationel visning"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "For visningsindstillinger"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Gitter-redigering: gem alle redigerede celler med det samme"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Mappe, hvor eksporterede data kan gemmes på serveren."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Gemmemappe"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Efterlades blank, hvis ikke brugt."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Autorisationsrækkefølge for vært"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Efterlades blank for standardværdi."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Host autorisationsregler"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Tillad login uden adgangskode"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Tillad root login"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Tidszone for session"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -6973,15 +6979,15 @@ msgstr ""
"Angiver den gældende tidszone; denne er muligvis forskellige fra dén som "
"findes på din databaseserver"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
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:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -6991,19 +6997,19 @@ msgstr ""
"autentifikation[/a] (ikke fundet i din dokumentrod; forslag: /etc/swekey."
"conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey konfigurationsfil"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Metode for autentifikation."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Autentifikationstype"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7011,11 +7017,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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Bogmærketabel"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7023,31 +7029,31 @@ msgstr ""
"Efterlades tom for ingen kolonnekommentar-/mime-typer, forslag: "
"[kbd]pma_column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Tabel for kolonneinformation"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Komprimer forbindelse til MySQL server."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Komprimer forbindelse"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Forbindelsestype"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Adgangskode for kontrolbruger"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7055,11 +7061,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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Kontrolbruger"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7067,11 +7073,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:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Kontrolvært"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7082,15 +7088,15 @@ msgstr ""
"standardporten, eller den allerede angivne port, hvis kontrolværten er lig "
"værten."
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Kontrolport"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Gem databaser som matcher regulært udtryk (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7098,15 +7104,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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Deaktiver brug af INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Skjul databaser"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7114,23 +7120,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:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL forespørgselsshistoriktabel"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Servernavn, hvor MySQL server kører."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Servernavn"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "Log ud URL"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7138,15 +7144,15 @@ msgstr ""
"Begrænser antallet af tabel-præferencer som lagres i databasen. De ældte "
"poster fjernes automatisk."
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Maksimalt antal tabel-præferencer, der lagres"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "QBE gemte søger tabel"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7154,11 +7160,11 @@ msgstr ""
"Efterlades tom for at undlade understøttelse af QBE-skematik, forslag: "
"[kbd]pma_pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Center tabelkolonner"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7166,15 +7172,15 @@ msgstr ""
"Efterlades tom for at undlade understøttelse af kolonner, forslag: "
"[kbd]pma_table_coords[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Prøv at forbinde uden adganskode."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Forbind uden adgangskode"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7183,30 +7189,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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Vis kun listede databaser"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Lades tom hvis du ikke bruger config auth."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Adgangskode for config auth"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF-skematik: pages tabel"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7216,20 +7222,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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Databasenavn"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Serverport"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7237,11 +7243,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:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Senest benyttede tabel"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7249,11 +7255,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:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Favorit tabeller"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7261,11 +7267,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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Relationstabel"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7273,31 +7279,31 @@ msgstr ""
"Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types[/"
"a] for et eksempel."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Login sessionsnavn"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "Login URL"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Server-sokkel"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Aktiver SSL for forbindelse til MySQL-serveren."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Brug SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7305,11 +7311,11 @@ msgstr ""
"Efterlades tom for at undlade understøttelse af PDF-skematik, forslag: "
"[kbd]pma_table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Designer og PDF-skema: tabelkoordinater"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7317,11 +7323,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:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Visningskolonnetabel"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7329,11 +7335,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:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "UI præference tabel"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7341,11 +7347,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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Tilføj DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7353,11 +7359,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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Tilføj DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7365,20 +7371,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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Tilføj DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
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:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Forespørgsler, der skal spores"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7386,22 +7392,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:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Sporingstabel for SQL-forespørgsler"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
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:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Opret versioner automatisk"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7409,11 +7415,11 @@ msgstr ""
"Efterlades tom for at undlade lagring af bruger-præferencer i database, "
"forslag: [kbd]pma_userconfig[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Bruger preference storage tabel"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7423,11 +7429,11 @@ msgstr ""
"menus funktioner; Efterlade en af dem tom vil deaktivere denne funktion, "
"foreslået: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Brugertabel"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7437,11 +7443,11 @@ msgstr ""
"funktioner; efterlades en af dem tom vil dette deaktivere denne funktion, "
"foreslået: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Tabel for brugergrupper"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7449,15 +7455,15 @@ msgstr ""
"Efterlades tom for deaktivere muligheden for at skjule eller vise "
"navigationselementer, forslag: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Tabel for skjulte navigationselementer"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Bruger for config auth"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7465,19 +7471,19 @@ msgstr ""
"En brugervenlig beskrivelse af serveren. Lad stå tom for at vise "
"værtstnavnet i stedet."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Udvidet navn for denne server"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Tillad visning af alle rækker"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7488,15 +7494,15 @@ msgstr ""
"konfigurationsfilen; dette begrænser ikke muligheden for at udføre den samme "
"kommando direkte."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Vis formular til ændring af adgangskode"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Vis formular til databaseoprettelse"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables."
@@ -7505,72 +7511,72 @@ msgstr ""
"Vis eller skjul en kolonne, der viser oprettelses-tidsstempel for alle "
"tabeller."
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Tabel kommentarer"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
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:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Vis tidsstempel for oprettelse"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
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:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Vis tidsstempel med seneste opdatering"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
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:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Vis tidsstempel for Seneste tjek"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
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:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Vis felttyper"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Vis funktionsfelterne i rediger/indsæt tilstand."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Vis funktionsfelter"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Om hints skal vises eller ej."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Vis hint"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7578,53 +7584,53 @@ msgstr ""
"Viser link til [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Vis phpinfo() link"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Vis detaljeret MySQL serverinformation"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
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:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Vis SQL-forespørgsler"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
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:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Bevar forespørgeselsboks"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Vis statistik"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
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:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Spring over låste tabeller"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7632,11 +7638,11 @@ msgid ""
"detected."
msgstr "En advarsel vises på hovedsiden, hvis Suhosin registreres."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin advarsel"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 "
@@ -7646,11 +7652,11 @@ msgstr ""
"indstillingen session.gc_maxlifetime er mindre end værdien af "
"`LoginCookieValidity`."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "Advarsel om gyldighed for logincookie"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7663,11 +7669,11 @@ msgstr ""
"fremhævet i SQL forespørgselstekstbokse (*2) og for forespørgselsvinduet "
"(*1,25)."
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Tekstboks kolonner"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7680,31 +7686,31 @@ 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:790
msgid "Textarea rows"
msgstr "Tekstboks rækker"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
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:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Titel på browservindue, når ingenting er valgt."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Standardtitel"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
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:795
+#: libraries/config/messages.inc.php:797
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:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7716,27 +7722,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:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Liste af trusted proxies til IP tillad/afvis"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Mappe til uploads"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Tillad søgning i hele databasen."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Brug databasesøgning"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7744,26 +7750,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:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Aktivér udviklerfanen i indstillinger"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Tjek for den seneste version"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7775,11 +7781,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:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Proxy-url"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7790,19 +7796,19 @@ msgstr ""
"Basic Authentication (grundlæggende godkendelsestjek). På nuværende "
"tidspunkt understøttes der ikke andre godkendelsestjek."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Brugernavn for proxy"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "Adgangskoden til godkendelsestjek på proxyen."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Adgangskode for proxy"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7810,45 +7816,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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
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:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Offentlig nøgle for reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
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:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Privat nøgle for reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "Vælg standardhandlingen for afsendelse af fejlrapporter."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Send fejlrapporter"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr "Enter udfører forespørgsler i konsollen"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7856,7 +7862,7 @@ msgstr ""
"Slå tilstanden Zero Configuration til - denne lader sig tilpasse "
"lagringstabeller for phpMyAdmin-konfigurationen automatisk."
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Slå tilstanden Zero Configuration til"
@@ -7882,44 +7888,44 @@ msgstr "HTTP autentifikation"
msgid "Signon authentication"
msgstr "Login autentifikation"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV vha. LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument regneark"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Hurtig"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Brugerdefineret"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Database eksportindstillinger"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV til MS Excel-data"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "OpenDocument tekst"
@@ -13675,15 +13681,31 @@ msgstr "Bruger bogmærket \"%s\" som standard-forespørgsel til gennemsyn."
msgid "Showing as PHP code"
msgstr "Viser som PHP-kode"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Den nuværende markering indeholder ikke en unik kolonne. Redigering af "
"gitter, afkrydsningsfelt, redigering og sletning er ikke tilgængelige."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Den nuværende markering indeholder ikke en unik kolonne. Redigering af "
+"gitter, afkrydsningsfelt, redigering og sletning er ikke tilgængelige."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemer med indeksene på tabel `%s`"
@@ -14945,6 +14967,10 @@ msgstr "Kommentar:"
msgid "Drag to reorder"
msgstr "Træk for at ændre rækkefølge"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Startrække:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Vælg kolonner (mindst én):"
diff --git a/po/de.po b/po/de.po
index 919d18dff8..e8751b60e4 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-06-17 05:52+0200\n"
"Last-Translator: Hauke Henningsen \n"
"Language-Team: German %s:"
msgstr "SQL-Befehl in der Datenbank %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "SQL-Befehl ausführen"
@@ -3448,7 +3449,7 @@ msgstr "Lesezeichen aktualisieren"
msgid "Delete bookmark"
msgstr "Lesezeichen löschen"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3456,21 +3457,21 @@ msgstr ""
"Der Server antwortet nicht (evtl. ist der Socket des lokalen MySQL-Servers "
"nicht korrekt konfiguriert)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Der Server antwortet nicht."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
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:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Details…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Verbindung für den controluser, wie er in Ihrer Konfiguration angegeben ist, "
@@ -3512,9 +3513,9 @@ msgstr[0] "%1$s Treffer in %2$s"
msgstr[1] "%1$s Treffer in %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3568,28 +3569,28 @@ msgstr "Zeilen filtern"
msgid "Search this table"
msgstr "Diese Tabelle durchsuchen"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Anfang"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Vorherige"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Nächste"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Ende"
@@ -3598,8 +3599,9 @@ msgstr "Ende"
msgid "All"
msgstr "Alle"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Anzahl der Datensätze:"
@@ -3701,16 +3703,16 @@ msgid "Query took %01.4f seconds."
msgstr "Die Abfrage dauerte %01.4f Sekunden."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "markierte:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3718,7 +3720,7 @@ msgstr "markierte:"
msgid "Check All"
msgstr "Alle auswählen"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Druckansicht"
@@ -3817,11 +3819,11 @@ msgstr "Versionsinformationen fehlt!"
msgid "Open new phpMyAdmin window"
msgstr "Neues phpMyAdmin-Fenster"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Klicken Sie auf die Leiste, um zum Anfang der Seite zu scrollen"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Javascript muss ab hier aktiviert sein!"
@@ -3885,8 +3887,8 @@ msgstr "Der Primärschlüssel wurde gelöscht."
msgid "Index %s has been dropped."
msgstr "Index %s wurde entfernt."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3904,7 +3906,7 @@ msgstr ""
"möglicherweise entfernt werden."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -3916,16 +3918,16 @@ msgid "View"
msgstr "Ansicht"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3937,10 +3939,10 @@ msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3948,19 +3950,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Suche"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3969,7 +3971,7 @@ msgid "Insert"
msgstr "Einfügen"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3978,21 +3980,21 @@ msgid "Privileges"
msgstr "Rechte"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operationen"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Nachverfolgung"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4009,16 +4011,16 @@ msgstr "Trigger"
msgid "Database seems to be empty!"
msgstr "Die Datenbank scheint leer zu sein!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Abfrage"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Routinen"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4026,16 +4028,16 @@ msgstr "Routinen"
msgid "Events"
msgstr "Ereignisse"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Designer"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Zentrale Spalten"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4043,38 +4045,38 @@ msgstr "Zentrale Spalten"
msgid "Databases"
msgstr "Datenbanken"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Benutzer"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Binäres Protokoll"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replikation"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variablen"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Zeichensätze"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Erweiterungen"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Formate"
@@ -4099,7 +4101,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d Datensatz eingefügt."
msgstr[1] "%1$d Datensätze eingefügt."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4778,12 +4780,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Eine Aufzählung, gewählt aus der Liste definierter Werte"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Maximal: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4794,119 +4796,115 @@ msgstr "Maximal: %s%s"
msgid "MySQL said: "
msgstr "MySQL meldet: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "SQL erklären"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "SQL-Erklärung umgehen"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr "Explain auf %s analysieren"
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "ohne PHP-Code"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP-Code erzeugen"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Inline bearbeiten"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "So"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y um %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s Tage, %s Stunden, %s Minuten und %s Sekunden"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Fehlende(r) Parameter:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Zur Datenbank \"%s\" springen."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Die Funktion %s wird durch einen bekannten Fehler beeinträchtigt, siehe %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Zum Umschalten anklicken"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Durchsuchen Sie Ihren Computer:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Es sind keine Dateien zum Hochladen vorhanden!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Leeren"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Ausführen"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Drucken"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Erzeugt am"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Aktualisiert am"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Letzter Check am"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Anfangs-Datensatz:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Suche:"
@@ -4929,13 +4927,13 @@ msgstr "Diesen Wert verwenden"
msgid "Rows"
msgstr "Datensätze"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5360,7 +5358,7 @@ msgid "Set value: %s"
msgstr "Setze Wert: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Voreingestellten Wert wiederherstellen"
@@ -6124,10 +6122,10 @@ msgstr "Anzeigemodus anpassen."
msgid "Customize default options."
msgstr "Standard-Einstellungen anpassen."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6605,7 +6603,7 @@ 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:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Benutzer dürfen keinen größeren Wert setzen"
@@ -6824,33 +6822,41 @@ msgstr "Dies sind Bearbeitungs-, Kopier- und Löschlinks."
msgid "Where to show the table row links"
msgstr "Wo die Datensatz-Links angezeigt werden sollen"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Natürliche Reihenfolge"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Verwende nur Icons, nur Text oder beides."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Tabellen-Navigationsleiste"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip Ausgabepufferung"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6858,19 +6864,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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Voreingestellte Sortierung"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Verwende andauernde Verbindungen zu MySQL Datenbanken."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Persistente Verbindung"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6880,11 +6886,11 @@ msgstr ""
"erforderliche Tabelle der phpMyAdmin Konfiguration nicht gefunden werden "
"kann."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Fehlende phpMyAdmin-Konfigurationsspeicher-Tabellen"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6892,11 +6898,11 @@ msgstr ""
"Standardmeldung unterdrücken, wenn die Version des Servers und der MySQL-"
"Bibliothek sich unterscheiden."
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Warnung bei unterschiedlicher Server-/Bibliothek-Version"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6904,27 +6910,27 @@ msgstr ""
"Standardhinweis der Struktur-Seite unterdrücken, wenn Spaltennamen in einer "
"Tabelle reservierte MySQL-Wörter sind."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Warnung wegen reservierter MySQL-Wörter"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Wie sollen die Menüpunkte dargestellt werden"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Wie verschiedene Aktions-Links angezeigt werden"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Änderungen an BLOB und BINARY Feldern verbieten."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "BINARY-Felder schützen"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6935,106 +6941,106 @@ msgstr ""
"Routinen zur Darstellung des Abfrageverlaufs eingesetzt (sie gehen beim "
"Schließen des Fensters verloren)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Anfragelog speichern"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Anzahl der Abfragen in der Historie."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Länge des Abfrageverlaufs"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr "Wahl der Funktionen zur Zeichensatz-Konvertierung."
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Umwandlungs Engine"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Tabellensortierung zwischenspeichern"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
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:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Standardsortierreihenfolge des Primärschlüssels"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
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:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Kopfzeilen wiederholen"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Sofort-Bearbeiten: Aktions-Auslöser"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Relationale Anzeige"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "Für Anzeigeoptionen"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Sofort-Bearbeiten: Alle bearbeiteten Zellen auf einmal speichern"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Verzeichnis auf dem Server für Exports."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Speicher Verzeichnis"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Leer lassen, wenn unbenutzt."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Host-Autorisierungsreihenfolge"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Leer lassen, um die Voreinstellungen zu verwenden."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Host-Autorisierungsregeln"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Erlaube Logins ohne Passwort"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Erlaube root Login"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Zeitzone der Sitzung"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -7042,15 +7048,15 @@ msgstr ""
"Setzt die effektive Zeitzone; möglicherweise von der Ihres Datenbankservers "
"abweichend"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
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:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP Bereich"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7060,19 +7066,19 @@ msgstr ""
"Authentifizierung[/a] (liegt nicht im Webhauptverzeichnis (document root); "
"empfohlen: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey Konfigurationsdatei"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Zu benutzende Authentifikations-Methode."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Authentifikationstyp"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7080,11 +7086,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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Lesezeichen Tabelle"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7092,32 +7098,32 @@ msgstr ""
"Leer lassen für keine Spalten Kommentare/mime types, Vorschlag: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Spalten Informationen Tabelle"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Komprimiere die Verbindung zum MySQL-Server."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Verbindung komprimieren"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Art der Verbindung"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "pmadb Benutzer Passwort"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7125,11 +7131,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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "pmadb Benutzer"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7137,11 +7143,11 @@ msgstr ""
"Eine alternative Host für den Konfiguration Speicher; leer lassen, um die "
"bereits definierten Host zu verwenden."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "pmadb Host"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7151,15 +7157,15 @@ msgstr ""
"verbinden; leer lassen, um den Standardport, oder den bereits definierten "
"Port, wenn der Kontrollhost dem Host gleicht."
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Kontroll-Port"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Verberge Datenbanken, die auf regular expressions (PCRE) passen."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7168,15 +7174,15 @@ msgstr ""
"bugs/2606/]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL "
"Bugs[/a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Benutzung von INFORMATION_SCHEMA deaktivieren"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Datenbanken verstecken"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7184,23 +7190,23 @@ msgstr ""
"Leer lassen für keine SQL Abfrageverlaufs-Unterstützung, Vorschlag: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL Abfragehistorien Tabelle"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Rechnername auf dem der MySQL Server läuft."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Hostname"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "Abmelde URL"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7208,15 +7214,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:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Maximale Anzahl der zu speichernden Tabelleneinstellungen"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "Beispielabfragentabelle"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7224,11 +7230,11 @@ msgstr ""
"Leer lassen um keine Beispielabfragen nutzen zu können, Vorschlag: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Tabelle für zentrale Spalten"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7236,15 +7242,15 @@ msgstr ""
"Leer lassen für keine Unterstützung für zentrale Spalten, Vorschlag: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Versuche ohne Passwort zu verbinden."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Ohne Passwort verbinden"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7254,30 +7260,30 @@ msgstr ""
"Bedeutung wiederhergestellt, d.h. [kbd]'my\\_db'[/kbd] und nicht "
"[kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Nur aufgelistete Datenbanken zeigen"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Leer lassen, wenn config auth nicht verwendet wird."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Passwort für config Authentifikation"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF-Schema: Seiten-Tabelle"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7287,20 +7293,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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Datenbankname"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Port"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7308,11 +7314,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:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Kürzlich verwendete Tabellen"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7320,11 +7326,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:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Favoriten-Tabelle"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7332,11 +7338,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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Relation Tabelle"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7344,32 +7350,32 @@ msgstr ""
"Siehe [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]Authentifizierungsarten[/a] für ein Beispiel."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Anmelde Session-Name"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "Anmelde URL"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Server Socket"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Ermögliche SSL für Verbindung zum MySQL-Server."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Benutze SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7377,11 +7383,11 @@ msgstr ""
"Leer lassen für keine PDF-Schema-Unterstützung, Vorschlag: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Designer- und PDF-Schema: Tabellenkoordinaten"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7389,11 +7395,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:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Tabelle für Anzeigespalten"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7401,11 +7407,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:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Tabelle für Oberflächeneinstellungen"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7413,11 +7419,11 @@ msgstr ""
"DROP DATABASE IF EXISTS statement beim Erstellen einer neuen Datenbank als "
"erste Zeile loggen."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE hinzufügen"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7425,11 +7431,11 @@ msgstr ""
"DROP TABLE IF EXISTS statement beim Erstellen einer neuen Ansicht als erste "
"Zeile loggen."
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "DROP TABLE hinzufügen"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7437,21 +7443,21 @@ msgstr ""
"DROP VIEW IF EXISTS statement beim Erstellen einer neuen Ansicht als erste "
"Zeile loggen."
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "DROP VIEW hinzufügen"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
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:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Zu verfolgende Statements"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7459,11 +7465,11 @@ msgstr ""
"Leer lassen für keine SQL Abfrageverlauf-Unterstützung, Vorschlag: "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Tabelle mit Verfolgung der SQL-Abfragen"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7471,11 +7477,11 @@ msgstr ""
"Automatische Versionserstellung für Tabellen und Ansichten durch den "
"Verlaufs-Mechanismus."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Versionen automatisch erzeugen"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7483,11 +7489,11 @@ msgstr ""
"Leer lassen, um die Benutzereinstellungen nicht in der Datenbank zu "
"speichern, Vorschlag: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Tabelle für Benutzereinstellungen"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7497,11 +7503,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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Benutzer-Tabelle"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7511,11 +7517,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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Benutzergruppen-Tabelle"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7523,15 +7529,15 @@ msgstr ""
"Leer lassen, um die Navigation anzuzeigen oder zu verstecken, Vorschlag: "
"[kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Tabelle für ausgeblendete Navigations-Elemente"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Benutzername für config Authentifikation"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7539,21 +7545,21 @@ msgstr ""
"Benutzerfreundlicher Name des Servers. Leer lassen um den tatsächlichen "
"Rechnernamen anzuzeigen."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Serverbezeichnung"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Erlaube es alle Datensätze anzuzeigen"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7564,55 +7570,55 @@ msgstr ""
"dieses beschränkt nicht die Möglichkeit der direkten Ausführung des selben "
"Befehls."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Zeige Formular zur Passwort-Änderung"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Zeige Formular zur Datenbank-Erstellung"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
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:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr "Tabellen-Kommentare einblenden"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
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:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Erstellungs-Zeitstempel anzeigen"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
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:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Zeitstempel des letzten Updates anzeigen"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
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:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Zeitstempel der letzten Überprüfung einblenden"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7620,27 +7626,27 @@ msgstr ""
"Definiert, ob Typen-Felder anfänglich im Bearbeiten/Einfügen-Modus angezeigt "
"werden."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Feld-Typen anzeigen"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Im Bearbeiten/Einfügen Modus Funktionsfelder anzeigen."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Funktionsfelder anzeigen"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Hinweise anzeigen."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Hinweis anzeigen"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7648,57 +7654,57 @@ msgstr ""
"Zeige Link zu [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"Ausgabe."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Zeige phpinfo() Link"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Zeige detailierte MySQL-Server Informationen"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
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:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Zeige SQL Anfragen"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
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:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Abfragefeld weiterhin anzeigen"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Zeige Statistik"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
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:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Überspringe gesperrte Tabellen"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7706,11 +7712,11 @@ msgstr ""
"Default-Warnhinweis auf der Hauptseite deaktivieren, der angezeigt wird, "
"wenn Suhosin erkannt wird."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin Warnhinweis"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 "
@@ -7720,11 +7726,11 @@ msgstr ""
"der Wert der PHP-Einstellung session.gc_maxlifetime kleiner als der Wert von "
"`LoginCookieValidity` ist."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "Login-Cookie Gültigkeitswarnung"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7732,11 +7738,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:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Textfeldspalten"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7744,31 +7750,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:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Textfeldzeilen"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
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:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Titelleiste des Browserfensters wenn nichts ausgewählt ist."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Standardtitel"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
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:795
+#: libraries/config/messages.inc.php:797
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:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7780,27 +7786,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:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Liste der Vertrauenswürdigen Proxies für IP Filter"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Upload Verzeichnis"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Erlaube Suche in der gesammten Datenbank."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Datenbank Suche"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7808,26 +7814,26 @@ msgstr ""
"Wenn deaktiviert, können Benutzer – unabhängig von der Checkbox rechts – "
"keine der untenstehenden Einstellungen ändern."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Aktiviere den Reiter \"Entwickler\" in den Einstellungen"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Auf neue Version prüfen"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7840,11 +7846,11 @@ msgstr ""
"keinen direkten Zugriff auf das Internet hat. Das Format ist: \"Hostname:Port"
"\"."
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Proxy-URL"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7855,21 +7861,21 @@ msgstr ""
"Authenfizierung verwendet. Momentan werden andere Arten der "
"Authentifizierung nicht unterstützt."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Proxy-Benutzername"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "Das Kennwort für die Authentifizierung mit dem Proxy."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
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:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7877,38 +7883,38 @@ msgstr ""
"[a@http://de.wikipedia.org/wiki/ZIP-Dateiformat]ZIP[/a]-Kompression für "
"Import- und Exportoperationen aktivieren."
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
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:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Öffentlicher Schlüssel für reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
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:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Privater Schlüssel für reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "Wählen Sie die Standardaktion, beim Senden von Fehlerberichten."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Fehlerberichte senden"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7916,11 +7922,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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr "Enter führt SQL-Abfragen in der Konsole aus"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7928,7 +7934,7 @@ msgstr ""
"Aktivieren Sie den Keine-Konfiguration-Modus um phpMyAdmin die "
"Konfigurationsspeichertabellen automatisch zu erzeugen."
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Keine-Konfiguration-Modus aktivieren"
@@ -7954,44 +7960,44 @@ msgstr "HTTP-Authentifizierung"
msgid "Signon authentication"
msgstr "Signon-Authentifizierung"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV mit LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument Kalkulationstabelle"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Schnell"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Benutzerdefiniert"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Export-Optionen der Datenbank"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV-Daten für MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "OpenDocument-Text"
@@ -13835,16 +13841,33 @@ msgstr "Lesezeichen \"%s\" wird als Standard-Anzeigeabfrage verwendet."
msgid "Showing as PHP code"
msgstr "Ansicht als PHP-Code"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Die aktuelle Markierung enthält keine eindeutige (\"unique\") Spalte. Gitter-"
"Bearbeitungsfunktion, Kontrollkästchen, Bearbeiten, Kopieren und Löschen von "
"Links sind nicht verfügbar."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Die aktuelle Markierung enthält keine eindeutige (\"unique\") Spalte. Gitter-"
+"Bearbeitungsfunktion, Kontrollkästchen, Bearbeiten, Kopieren und Löschen von "
+"Links sind nicht verfügbar."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Warnungen bei den Indizes der Tabelle `%s`"
@@ -15111,6 +15134,10 @@ msgstr "Kommentar:"
msgid "Drag to reorder"
msgstr "Zur Umsortierung ziehen"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Anfangs-Datensatz:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Spalten auswählen (min. eines):"
diff --git a/po/el.po b/po/el.po
index 8697ee0a2c..bf85821bb5 100644
--- a/po/el.po
+++ b/po/el.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-20 06:59-0400\n"
-"PO-Revision-Date: 2015-06-20 14:54+0200\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"PO-Revision-Date: 2015-06-22 14:51+0200\n"
"Last-Translator: Παναγιώτης Παπάζογλου \n"
"Language-Team: Greek "
"\n"
@@ -301,7 +301,7 @@ msgid "Tracked tables"
msgstr "Παρακολουθούμενοι πίνακες"
#: db_tracking.php:125 db_tracking.php:287 libraries/Menu.class.php:247
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:798
#: 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
@@ -327,7 +327,7 @@ msgid "Updated"
msgstr "Ενημερώθηκε"
#: db_tracking.php:129 js/messages.php:237 libraries/Menu.class.php:551
-#: libraries/Util.class.php:4386 libraries/config.values.php:104
+#: libraries/Util.class.php:4391 libraries/config.values.php:104
#: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101
#: libraries/server_status_processes.lib.php:94 libraries/tracking.lib.php:278
msgid "Status"
@@ -516,8 +516,8 @@ msgstr "Προσθήκη γεωμετρίας"
#: gis_data_editor.php:407 js/messages.php:286
#: libraries/DbSearch.class.php:467 libraries/DisplayResults.class.php:1807
-#: libraries/Util.class.php:4885 libraries/browse_foreigners.lib.php:142
-#: libraries/core.lib.php:610 libraries/display_change_password.lib.php:109
+#: 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_import.lib.php:392 libraries/index.lib.php:44
@@ -546,8 +546,9 @@ msgstr "Προσθήκη γεωμετρίας"
#: libraries/tracking.lib.php:532 libraries/tracking.lib.php:652
#: prefs_manage.php:277 prefs_manage.php:355
#: templates/columns_definitions/column_definitions_form.phtml:59
-#: templates/index_form.phtml:238 templates/table/selection_form.phtml:75
-#: view_create.php:276 view_operations.php:106
+#: templates/index_form.phtml:238 templates/startAndNumberOfRowsPanel.phtml:14
+#: templates/table/selection_form.phtml:75 view_create.php:276
+#: view_operations.php:106
msgid "Go"
msgstr "Εκτέλεση"
@@ -672,7 +673,7 @@ msgstr ""
msgid "Could not load the progress of the import."
msgstr "Αδύνατη η φόρτωση της προόδου της εισαγωγής."
-#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:735
+#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:738
#: libraries/export.lib.php:464
#: libraries/plugins/schema/Export_Relation_Schema.class.php:302
#: user_password.php:208
@@ -769,7 +770,7 @@ msgstr "Εμφάνιση πληροφοριών της PHP"
msgid "Version information:"
msgstr "Πληροφορίες έκδοσης:"
-#: index.php:392 libraries/Util.class.php:429 libraries/Util.class.php:490
+#: 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/navigation/NavigationHeader.class.php:197
@@ -904,7 +905,7 @@ msgstr ""
"Ο διακομιστής εκτελείται με Suhosin. Αναφερθείτε στην %sτεκμηρίωση%s για "
"πιθανά ζητήματα."
-#: js/messages.php:38 libraries/import.lib.php:125 sql.php:151
+#: js/messages.php:38 libraries/import.lib.php:125 sql.php:161
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί."
@@ -1130,7 +1131,7 @@ msgstr "Εξομοίωση ερωτήματος"
msgid "Matched rows:"
msgstr "Εγγραφές που ταιριάζουν:"
-#: js/messages.php:114 libraries/Util.class.php:638
+#: js/messages.php:114 libraries/Util.class.php:641
msgid "SQL query:"
msgstr "Εντολή SQL:"
@@ -1173,12 +1174,12 @@ msgid "Other"
msgstr "Άλλα"
#. l10n: Thousands separator
-#: js/messages.php:131 libraries/Util.class.php:1460
+#: js/messages.php:131 libraries/Util.class.php:1463
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:133 libraries/Util.class.php:1462
+#: js/messages.php:133 libraries/Util.class.php:1465
msgid "."
msgstr ","
@@ -1284,40 +1285,40 @@ msgid "Processes"
msgstr "Διεργασίες"
#. l10n: shortcuts for Byte
-#: js/messages.php:167 libraries/Util.class.php:1404
+#: js/messages.php:167 libraries/Util.class.php:1407
msgid "B"
msgstr "B"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:168 libraries/Util.class.php:1406
+#: js/messages.php:168 libraries/Util.class.php:1409
#: libraries/server_status_monitor.lib.php:217
msgid "KiB"
msgstr "KB"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:169 libraries/Util.class.php:1408
+#: js/messages.php:169 libraries/Util.class.php:1411
#: libraries/display_export.lib.php:702
#: libraries/server_status_monitor.lib.php:218
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:170 libraries/Util.class.php:1410
+#: js/messages.php:170 libraries/Util.class.php:1413
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:171 libraries/Util.class.php:1412
+#: js/messages.php:171 libraries/Util.class.php:1415
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:172 libraries/Util.class.php:1414
+#: js/messages.php:172 libraries/Util.class.php:1417
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:173 libraries/Util.class.php:1416
+#: js/messages.php:173 libraries/Util.class.php:1419
msgid "EiB"
msgstr "EB"
@@ -1336,7 +1337,7 @@ msgid "Traffic"
msgstr "Κίνηση"
#: js/messages.php:179 libraries/Menu.class.php:585
-#: libraries/Util.class.php:4390 libraries/server_status_monitor.lib.php:257
+#: libraries/Util.class.php:4395 libraries/server_status_monitor.lib.php:257
msgid "Settings"
msgstr "Ρυθμίσεις"
@@ -1653,8 +1654,8 @@ msgstr ""
#: js/messages.php:264 libraries/Menu.class.php:350
#: libraries/Menu.class.php:453 libraries/Menu.class.php:581
-#: libraries/Util.class.php:4389 libraries/Util.class.php:4404
-#: libraries/Util.class.php:4421 libraries/config/messages.inc.php:236
+#: libraries/Util.class.php:4394 libraries/Util.class.php:4409
+#: libraries/Util.class.php:4426 libraries/config/messages.inc.php:236
#: libraries/display_import.lib.php:105
#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:238
#: setup/frames/menu.inc.php:26
@@ -1724,7 +1725,7 @@ msgstr "Διαμόρφωση SQL…"
msgid "Cancel"
msgstr "Άκυρο"
-#: js/messages.php:290 libraries/Header.class.php:456
+#: js/messages.php:290 libraries/Header.class.php:455
msgid "Page-related settings"
msgstr "Ρυθμίσεις σχετισμένες με σελίδα"
@@ -1801,7 +1802,7 @@ msgstr "Αντιγραφή βάσης δεδομένων"
msgid "Changing Charset"
msgstr "Αλλαγή Συνόλου χαρακτήρων"
-#: js/messages.php:314 libraries/Util.class.php:3234
+#: js/messages.php:314 libraries/Util.class.php:3237
msgid "Enable foreign key checks"
msgstr "Ενεργοποίηση ελέγχων μη διακριτών κλειδιών"
@@ -1837,9 +1838,9 @@ msgstr ""
#: js/messages.php:328 libraries/DisplayResults.class.php:4857
#: libraries/DisplayResults.class.php:5115 libraries/Menu.class.php:342
#: libraries/Menu.class.php:444 libraries/Menu.class.php:577
-#: libraries/Util.class.php:3675 libraries/Util.class.php:3676
-#: libraries/Util.class.php:4388 libraries/Util.class.php:4403
-#: libraries/Util.class.php:4420 libraries/config/messages.inc.php:230
+#: libraries/Util.class.php:3680 libraries/Util.class.php:3681
+#: libraries/Util.class.php:4393 libraries/Util.class.php:4408
+#: libraries/Util.class.php:4425 libraries/config/messages.inc.php:230
#: libraries/display_export.lib.php:167 libraries/rte/rte_list.lib.php:146
#: libraries/server_privileges.lib.php:2085
#: libraries/server_privileges.lib.php:2164
@@ -1888,11 +1889,11 @@ msgstr "Προβολή παραθύρου ερωτήματος"
#: js/messages.php:343 libraries/Console.class.php:88
#: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3450
#: libraries/DisplayResults.class.php:4839 libraries/Index.class.php:723
-#: libraries/Util.class.php:664 libraries/Util.class.php:1218
-#: libraries/Util.class.php:3673 libraries/Util.class.php:3674
+#: libraries/Util.class.php:667 libraries/Util.class.php:1221
+#: 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:775
+#: libraries/config/messages.inc.php:777
#: libraries/server_user_groups.lib.php:119
#: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179
msgid "Edit"
@@ -2684,63 +2685,63 @@ msgid "December"
msgstr "Δεκεμβρίου"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1620
+#: js/messages.php:655 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Ιαν"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1622
+#: js/messages.php:657 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Φεβ"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1624
+#: js/messages.php:659 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Μαρ"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1626
+#: js/messages.php:661 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Απρ"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1628
+#: js/messages.php:663 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Μάη"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1630
+#: js/messages.php:665 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Ιουν"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1632
+#: js/messages.php:667 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Ιουλ"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1634
+#: js/messages.php:669 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Αυγ"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1636
+#: js/messages.php:671 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Σεπ"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1638
+#: js/messages.php:673 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Οκτ"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1640
+#: js/messages.php:675 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Νοε"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1642
+#: js/messages.php:677 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Δεκ"
@@ -2778,32 +2779,32 @@ msgid "Sun"
msgstr "Κυρ"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1647
+#: js/messages.php:698 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Δευ"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1649
+#: js/messages.php:700 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Τρί"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1651
+#: js/messages.php:702 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Τετ"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1653
+#: js/messages.php:704 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Πέμ"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1655
+#: js/messages.php:706 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Παρ"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1657
+#: js/messages.php:708 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Σάβ"
@@ -2945,7 +2946,7 @@ msgid "Please enter a valid HEX input"
msgstr "Εισάγετε μια έγκυρη ΔΕΚΑΕΞΑΔΙΚΗ εισαγωγή"
#: js/messages.php:785 libraries/Message.class.php:199
-#: libraries/Util.class.php:624 libraries/core.lib.php:245
+#: 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
msgid "Error"
@@ -3049,7 +3050,7 @@ msgid "Requery"
msgstr "Επανερώτημα"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:790
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3098,7 +3099,7 @@ msgstr "Κατά την τρέχουσα συνεδρία"
msgid "Explain"
msgstr "Εξήγηση"
-#: libraries/Console.class.php:216 libraries/Util.class.php:1291
+#: libraries/Console.class.php:216 libraries/Util.class.php:1294
#: libraries/sql.lib.php:278
msgid "Profiling"
msgstr "Δημιουργία προφίλ"
@@ -3179,17 +3180,14 @@ msgid "Press Enter to execute query"
msgstr "Πατήστε Enter για εκτέλεση του ερωτήματος"
#: libraries/Console.class.php:277
-#| msgid "Ascending"
msgid "ascending"
msgstr "αύξουσα"
#: libraries/Console.class.php:280
-#| msgid "Descending"
msgid "descending"
msgstr "φθίνουσα"
#: libraries/Console.class.php:283
-#| msgid "Order"
msgid "Order:"
msgstr "Ταξινόμηση:"
@@ -3198,27 +3196,22 @@ msgid "Count"
msgstr "Μέτρηση"
#: libraries/Console.class.php:292
-#| msgid "Execute every"
msgid "Execution order"
msgstr "Σειρά εκτέλεσης"
#: libraries/Console.class.php:295
-#| msgid "Time taken:"
msgid "Time taken"
msgstr "Χρόνος που παρήλθε"
#: libraries/Console.class.php:298
-#| msgid "Order"
msgid "Order by:"
msgstr "Ταξινόμηση κατά:"
#: libraries/Console.class.php:301
-#| msgid "SQL queries"
msgid "Group queries"
msgstr "Ομαδοποίηση ερωτημάτων"
#: libraries/Console.class.php:304
-#| msgid "SQL queries"
msgid "Ungroup queries"
msgstr "Αποομαδοποίηση ερωτημάτων"
@@ -3231,12 +3224,11 @@ msgid "Hide trace"
msgstr "Απόκρυψη ίχνους"
#: libraries/Console.class.php:317
-#| msgid "Count"
msgid "Count:"
msgstr "Μέτρηση:"
-#: libraries/Console.class.php:332 libraries/Util.class.php:1260
-#: libraries/config/messages.inc.php:777
+#: libraries/Console.class.php:332 libraries/Util.class.php:1263
+#: libraries/config/messages.inc.php:779
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3385,7 +3377,7 @@ msgstr "Διαγραφή:"
msgid "SQL query on database %s:"
msgstr "Εντολή SQL στη βάση δεδομένων %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Υποβολή ερωτήματος"
@@ -3409,7 +3401,7 @@ msgstr "Ενημέρωση σελιδοδείκτη"
msgid "Delete bookmark"
msgstr "Διαγραφή σελιδοδείκτη"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3417,19 +3409,19 @@ msgstr ""
"Ο διακομιστής δεν αποκρίνεται (ή ο τοπικός διακομιστής δεν έχει ρυθμιστεί "
"σωστά)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Ο διακομιστής δεν αποκρίνεται."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Ελέξτε τα δικαιώματα του φακέλου που περιέχει τη βάση δεδομένων."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Λεπτομέρειες…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου όπως ορίστηκε στη ρύθμισή σας."
@@ -3469,9 +3461,9 @@ msgstr[0] "%1$s απατέλεσμα στο %2$s"
msgstr[1] "%1$s αποτελέσματα στο %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3525,28 +3517,28 @@ msgstr "Φιλτράρισμα εγγραφών"
msgid "Search this table"
msgstr "Αναζήτηση σε αυτόν τον πίνακα"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Αρχή"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Προηγούμενη"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Επόμενη"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Τέλος"
@@ -3555,8 +3547,9 @@ msgstr "Τέλος"
msgid "All"
msgstr "Όλα"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Αριθμός εγγραφών:"
@@ -3654,16 +3647,16 @@ msgid "Query took %01.4f seconds."
msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Με τους επιλεγμένους:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3671,7 +3664,7 @@ msgstr "Με τους επιλεγμένους:"
msgid "Check All"
msgstr "Επιλογή όλων"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Εμφάνιση για εκτύπωση"
@@ -3770,11 +3763,11 @@ msgstr "Λείπουν οι πληροφορίες Git!"
msgid "Open new phpMyAdmin window"
msgstr "Άνοιγμα νέου παραθύρου phpMyAdmin"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Πατήστε στη γραμμή για να μεταβείτε στην κορυφή της σελίδας"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένη την Javascript!"
@@ -3838,8 +3831,8 @@ msgstr "Το πρωτεύον κλειδί διεγράφη."
msgid "Index %s has been dropped."
msgstr "Το ευρετήριο %s έχει διαγραφεί."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3857,7 +3850,7 @@ msgstr ""
"απομακρυνθεί."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Διακομιστής"
@@ -3869,16 +3862,16 @@ msgid "View"
msgstr "Προβολή"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3890,10 +3883,10 @@ msgid "Structure"
msgstr "Δομή"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3901,19 +3894,19 @@ msgid "SQL"
msgstr "Κώδικας SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Αναζήτηση"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3922,7 +3915,7 @@ msgid "Insert"
msgstr "Προσθήκη"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3931,21 +3924,21 @@ msgid "Privileges"
msgstr "Δικαιώματα"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Λειτουργίες"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Παρακολούθηση"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3962,16 +3955,16 @@ msgstr "Δείκτες"
msgid "Database seems to be empty!"
msgstr "Η βάση δεδομένων φαίνεται να είναι άδεια!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Επερώτημα κατά παράδειγμα"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Εργασίες"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3979,16 +3972,16 @@ msgstr "Εργασίες"
msgid "Events"
msgstr "Συμβάντα"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Σχεδιαστής"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Κεντρικές στήλες"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3996,38 +3989,38 @@ msgstr "Κεντρικές στήλες"
msgid "Databases"
msgstr "Βάσεις δεδομένων"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Χρήστες"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Δυαδικό αρχείο καταγραφής"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Αναπαραγωγή"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Μεταβλητές"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Σύνολο χαρακτήρων"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Πρόσθετα"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Μηχανές"
@@ -4052,7 +4045,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "Εισήχθηκε %1$d γραμμή."
msgstr[1] "Εισήχθηκαν %1$d γραμμές."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4732,12 +4725,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Μια απαρίθμηση, η οποία έχει επιλεγεί από τη λίστα ορισμένων τιμών"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Μέγιστο μέγεθος: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4748,120 +4741,116 @@ msgstr "Μέγιστο μέγεθος: %s%s"
msgid "MySQL said: "
msgstr "Η MySQL επέστρεψε το μήνυμα: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Ανάλυση SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Χωρίς ανάλυση SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr "Ανάλυση Εξήγησης στο %s"
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "χωρίς κώδικα PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Δημιουργία κώδικα PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Επεξεργασία εσωτερικά"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Κυρ"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y στις %H:%M:%S"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Απολεσθείσα παράμετρος:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Μεταπήδηση στην βάση «%s»."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα, για αυτό δείτε %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Πατήστε για εναλλαγή"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Περιηγηθείτε στον υπολογιστή σας:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Επιλογή από το φάκελο αποστολής του διακομίστή ιστού %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
"Ο φάκελος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Δεν υπάρχουν αρχεία προς αποστολή!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Άδειασμα"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Εκτέλεση"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Εκτύπωση"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Δημιουργία"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Τελευταία ενημέρωση"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Tελευταίος έλεγχος"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Εγγραφή έναρξης:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Αναζήτηση:"
@@ -4884,13 +4873,13 @@ msgstr "Χρήση αυτής της τιμής"
msgid "Rows"
msgstr "Εγγραφές"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Δεδομένα"
@@ -5313,7 +5302,7 @@ msgid "Set value: %s"
msgstr "Ορισμός τιμής: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Επαναφορά προεπιλεγμένης τιμής"
@@ -6071,10 +6060,10 @@ msgstr "Προσαρμοσμένη κατάσταση αναζήτησης."
msgid "Customize default options."
msgstr "Προσαρμογή προεπιλεγμένων επιλογών."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6555,7 +6544,7 @@ msgid "Maximum displayed SQL length"
msgstr "Μέγιστο μήκος προβολής SQL"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Οι χρήστες δεν μπορούν να ορίσουν μεγαλύτερη τιμή"
@@ -6776,35 +6765,45 @@ msgstr "Αυτοί είναι οι σύνδεσμοι Επεξεργασία, Α
msgid "Where to show the table row links"
msgstr "Που να προβάλονται οι σύνδεσμοι γραμμής πίνακα"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+"Αν θα προβάλονται σύνδεσμοι εγγραφής ακόμα και κατά την απουσία μοναδικού "
+"κλειδιού."
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr "Πρόβολη συνδέσμων εγγραφών πάντα"
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
"Χρήση φυσικής ταξινόμησης για την ταξινόμηση ονομάτων πινάκων και βάσεων "
"δεδομένων."
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Φυσική ταξινόμηση"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Χρήση μόνο εικονιδίων, μόνο κειμένου ή και τα δύο."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Γραμμή πλοήγησης πίνακα"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"Χρήση εξαγόμενου GZip buffering για αυξημένη ταχύτητα σε μεταφορές HTTP."
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "Εξαγόμενο GZip buffering"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6812,19 +6811,19 @@ msgstr ""
"[kbd]SMART[/kbd] - π.χ. φθίνουσα ταξινόμηση για στήλες τύπου TIME, DATE, "
"DATETIME και TIMESTAMP, αύξουσα ταξινόμηση στα υπόλοιπα."
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Προεπιλεγμένη ταξινόμηση"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Χρήση εξαναγκασμένων συνδέσεων στις βάσεις δεδομένων MySQL."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Επιμένουσες συνδέσεις"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6834,11 +6833,11 @@ msgstr ""
"λεπτομερούς δομής της βάσης δεδομένων, αν κάποιο από τους απαραίτητους "
"πίνακες για την αποθήκευση ρυθμίσεων του phpMyAdmin δεν βρεθεί."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Λείπουν πίνακες αποθήκευσης ρυθμίσεων του phpMyAdmin"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6846,11 +6845,11 @@ msgstr ""
"Απενεργοποιήση της προεπιλεγμένης προειδοποιησης που εμφανίζεται αν "
"ανιχνευτεί διαφορά μεταξύ της βιβλιοθήκης και του διακομιστή MySQL."
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Προειδοποίηση διαφοράς διακομιστή/βιβλιοθήκης"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6858,27 +6857,27 @@ msgstr ""
"Απενεργοποiήστε την προεπιλεγμένη προειδοποίηση που εμφανίζεται στη σελίδα "
"Δομής, αν τα ονόματα στηλών είναι δεσμευμένες λέξεις της MySQL."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Προειδοποίηση δεσμευμένης λέξης MySQL"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Πως θα εμφανίζονται οι καρτέλες μενού"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Πως θα εμφανίζονται διάφοροι σύνδεσμοι ενεργιών"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Αποτροπή επεξεργασίας στηλών BLOB και BINARY."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Προστασία δυαδικών στηλών"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6888,126 +6887,126 @@ msgstr ""
"ρυθμίσεων phpMyAdmin). Αν απενεργοποιηθεί, λειτουργούν ρουτίνες JS για "
"προβολή του ιστορικού ερωτημάτων (χάνεται με το κλείσιμο του παραθύρου)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Μόνιμο ιστορικό ερωτημάτων"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Πόσα ερωτήματα παραμένουν στο ιστορικό."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Μέγεθος ιστορικού ερωτημάτων"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
"Επιλέξτε ποιες συναρτήσεις θα χρησιμοποιηθούν για μετατροπή συνόλων "
"χαρακτήρων."
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Μηχανή επανακωδικοποίησης"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
"Όταν μεταικινήστε μταξύ πινάκων, η ταξινόμηση για κάθε πίανακα "
"απομνημονεύεται."
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Απομνημόνευση ταξινόμησης πινάκων"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr "Προεπιλεγμένη ταξινόμηση για πίνακες με πρωτεύον κλειδί."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Προεπιλεγμένη ταξινόμηση πρωτεύοντος κλειδιού"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Επανάληψη κεφαλίδων κάθε Χ κελιά. Το [kbd]0[/kbd] απενεργοποιεί το "
"χαρακτηριστικό."
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Επανάληψη κεφαλίδων"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Επεξεργασία καννάβου: πρόκληση δράσης"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Σχεσιακή προβολή"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "Για Επιλογές προβολής"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Επεξεργασία καννάβου: Αποθήκευση όλων των επεξεργασμένων κελιών μαζί"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Ο φάκελος στον διακομιστή όπου οι εξαγωγές μπορούν να αποθηκευτούν."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Φάκελος αποθήκευσης"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Αφήστε το άδειο αν δεν χρησιμοποιηθεί."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Σειρά πιστοποίησης φιλοξενητή"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Αφήστε κενό για προεπιλογές."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Κανόνες πιστοποίησης φιλοξενητή"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Δικαίωμα συνδέσεων χωρίς κωδικό πρόσβασης"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Δικαίωμα ριζικής σύνδεσης"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Ζώνη ώρας συνεδρίας"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
"Ορίζει την ενεργή ζώνη ώρας, πιθανά διαφορετική από αυτή του διακομιστή σας"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
"Το βασίλειο του HTTP Basic Auth εμφανίζεται όταν γίνεται πιστοποίηση HTTP."
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "Βασίλειο HTTP"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7017,19 +7016,19 @@ msgstr ""
"υλικού SweKey[/a] (δεν βρίσκεται στο ριζικό φάκελο του εγγράφου; "
"προτείνεται: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "Αρχείο ρυθμίσεων SweKey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Μέθοδος επικύρωσης για χρήση."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Τύπος επικύρωσης"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7037,11 +7036,11 @@ msgstr ""
"Αφήστε κενό αν δεν υπάρχει υποστήριξη [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]σελιδοδείκτη[/a], προτείνεται: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Πίνακας σελιδοδεικτών"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7049,33 +7048,33 @@ msgstr ""
"Αφήστε κενό για να μη υπάρχουν σχόλια/τύποι mime στις στήλες, προτείνεται: "
"[kbd]pma_column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Πίνακας πληροφοριών στήλης"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Συνδεση συμπίεσης στο διακομιστή MySQL."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Σύνδεση συμπίεσης"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
"Πως να συνδεθείτε στο διακομιστή, κρατήστε το [kbd]tcp[/kbd] αν δεν είστε "
"σίγουρος/η."
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Τύπος σύνδεσης"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Έλεγχος κωδικού πρόσβασης χρήστη"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7084,11 +7083,11 @@ msgstr ""
"Περισσότερες πληροφορίες είναι διαθέσιμες στο [a@http://wiki.phpmyadmin.net/"
"pma/controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Έλεγχος χρήστη"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7096,11 +7095,11 @@ msgstr ""
"Ένας εναλλακτικός φιλοξενητής για αποθήκευση των ρυθμίσεων, αφήστε το κενό "
"για χρήση του ήδη ορισμένου."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Έλεγχος φιλοξηνητή"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7110,15 +7109,15 @@ msgstr ""
"αποθήκευση των ρυθμίσεων, αφήστε το κενό για χρήση της προεπιλεγμένης θύρας "
"ή της ήδη ορισμένης θύρας αν το controlhost ισούται με το φιλοξενητή."
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Θύρα ελέγχου"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Απόκρυψη βάσεων δεδομένων που ταιριάζουν την κανονική έκφραση (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7127,15 +7126,15 @@ msgstr ""
"bugs/2606/]PMA bug tracker[/a] και στο [a@http://bugs.mysql.com/19588]MySQL "
"Bugs[/a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Απενεργοποίηση χρήσης του INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Απόκρυψη βάσεων δεδομένων"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7143,23 +7142,23 @@ msgstr ""
"Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL, προτείνεται: "
"[kbd]pma_history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Πίνακας ιστορικού ερωτημάτων SQL"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Ονομασία θέσης όπου εκτελείται ο διακομιστής MySQL."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Ονομασία θέσης διακομιστή"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "Διεύθυνση URL αποσύνδεσης"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7167,15 +7166,15 @@ msgstr ""
"Περιορίζει τον αριθμό των προτιμήσεων πινάκων που αποθηκεύονται στη βάση "
"δεδομένων, οι παλαιές εγγραφές απομακρύνονται αυτόματα."
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Μέγιστος αριθμός προτιμήσεων πινάκων για αποθήκευση"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "Πίνακας αποθηκευμένων αναζητήσεων QBE"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7183,11 +7182,11 @@ msgstr ""
"Αφήστε το κενό για μη υποστήριξη αποθηκευμένων αναζητήσεων QBE, προτείνεται: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Πίνακας κεντρικών στηλών"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7195,15 +7194,15 @@ msgstr ""
"Αφήστε το κενό για να μην υποστηρίζονται κεντρικές στήλες. Προτείνεται: "
"[kbd]pma__central_columns[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Δοκιμάστε να συνδεθείτε χωρίς κωδικό πρόσβασης."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Σύνδεση χωρίς κωδικό πρόσβασης"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7213,30 +7212,30 @@ msgstr ""
"κάθετο χρησιμοποιήστε τα ως κανονικούς χαρακτήρες, π.χ. χρησιμοποιήστε "
"[kbd]'my\\_db[/kbd]' και όχι [kbd]'my_db[/kbd]'."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Εμφάνιση μόνο των βάσεων δεδομένων από λίστα"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Αφήστε το άδειο αν δεν χρησιμοποιείτε ρύθμισμένη επικύρωση."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Κωδικός πρόσβασης για ρυθμισμένη επικύρωση"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "Σχέδιο PDF: πίνακας σελίδων"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7247,21 +7246,21 @@ msgstr ""
"a] για λεπτομέρειες. Αφήστε κενό για να μην υπάρχει υποστήριξη. Προτείνεται: "
"[kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Όνομα βάσης δεδομένων"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Θύρα που αποκρίνεται ο διακομιστής MySQL. Αφήστε το άδειο για προεπιλογή."
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Θύρα διακομιστή"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7269,11 +7268,11 @@ msgstr ""
"Αφήστε το κενό για μη «μόνιμους» πρόσφατα χρησιμοποιημένους πίνακες μεταξύ "
"συνεδριών, προτείνεται: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Πρόσφατα χρησιμοποιημένος πίνακας"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7281,11 +7280,11 @@ msgstr ""
"Αφήστε το κενό για μη «μόνιμους» αγαπημένους πίνακες μεταξύ συνεδριών, "
"προτείνεται: [kbd]pma__favorite[/kbd]."
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Πίνακας αγαπημένων"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7294,11 +7293,11 @@ msgstr ""
"pma/relation]συνδέσμων-συσχετίσεων[/a], προτείνεται: [kbd]pma__relation[/"
"kbd]."
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Πίνακας συσχετίσεων"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7306,33 +7305,33 @@ msgstr ""
"Δείτε τους [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]τύπους "
"επικύρωσης[/a] για ένα παράδειγμα."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Ονομάσία συνεδρίας σύνδεσης"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "Διεύθυνση URL σύνδεσης"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Η υποδοχή στην οποία ο διακομιστής MySQL αποκρίνεται. Αφήστε το κενό για "
"προεπιλογή."
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Υποδοχή διακομιστή"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Ενεργοποιήση SSL για σύνδεση στο διακομιστή MySQL."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Χρήση SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7340,11 +7339,11 @@ msgstr ""
"Αφήστε το κενό για να μην υποστηρίζεται σχέδιο PDF. Προτείνεται: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Σχεδιαστής και σχέδιο PDF: συντεταγμένες πίνακα"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7352,11 +7351,11 @@ msgstr ""
"Ο πίνακας που περιγράφει τις προβαλλόμενες στήλες - αφήστε το κενό για να "
"μην υποστηρίζεται, προτείνεται: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Πίνακας προβολής στηλών"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7364,11 +7363,11 @@ msgstr ""
"Αφήστε το κενό για μη «μόνιμο» περιβάλλον εργασίας ρυθμίσεων πινάκων μεταξύ "
"συνεδριών, προτείνεται: [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Πίνακας προτιμήσεων UI"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7376,11 +7375,11 @@ msgstr ""
"Όταν δηλωθεί DROP DATABASE IF EXISTS θα προστεθεί ως πρώτη γραμμή στην "
"καταγραφή κατά τη δημιουργία βάσης δεδομένων."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Προσθήκη της εντολής DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7388,11 +7387,11 @@ msgstr ""
"Όταν δηλωθεί DROP TABLE IF EXISTS θα προστεθεί ως πρώτη γραμμή στην "
"καταγραφή κατά τη δημιουργία πίνακα."
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Προσθήκη DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7400,21 +7399,21 @@ msgstr ""
"Όταν δηλωθεί DROP VIEW IF EXISTS θα προστεθεί ως πρώτη γραμμή στην καταγραφή "
"κατά τη δημιουργία προβολής."
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Προσθήκη DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Ορίζει τη λίστα των δηλώσεων που χρησιμοποιεί η αυτόματη δημιουργία για νέες "
"εκδόσεις."
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Δηλώσεις προς παρακολούθηση"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7422,11 +7421,11 @@ msgstr ""
"Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL , προτείνεται: "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Πίνακας ιστορικού παρακολούθησης ερωτημάτων SQL"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7434,11 +7433,11 @@ msgstr ""
"Αν ο μηχανισμός παρακολούθησης δημιουργεί εκδόσεις για πίνακες και προβολές "
"αυτόματα."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Αυτόματη δημιουργία εκδόσεων"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7446,11 +7445,11 @@ msgstr ""
"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: "
"[kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Πίνακας αποθήκευσης προτιμήσεων χρήστη"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7460,11 +7459,11 @@ msgstr ""
"ενεργοποίηση του χαρακτηριστικού μενού ρυθμίσεων. Αφήνοντας ένα από τα δύο "
"κενό απενεργοποιείται το χαρακτηριστικό, προτείνεται: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Πίνακας χρηστών"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7475,11 +7474,11 @@ msgstr ""
"κενό απενεργοποιείται το χαρακτηριστικό, προτείνεται: [kbd]pma__usergroups[/"
"kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Πίνακας ομάδων χρηστών"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7487,15 +7486,15 @@ msgstr ""
"Αφήστε το κενό για απενεργοποίηση του χαρακτηριστικού προσαρμόσιμων μενού, "
"προτείνεται: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Πίνακας κρυφών αντικειμένων πλοήγησης"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Χρήστης για ρυθμισμένη επικύρωση"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7503,20 +7502,20 @@ msgstr ""
"Μια φιλοχρηστική περιγραφή αυτού του διακομιστή. Αφήστε το κενό για να "
"εμφανίζεται το όνομα."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Φιλοχρηστικό όνομα διακομιστή"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
"Αν θα εμφανίζεται στο χρήστη ένα κουμπί «εμφάνιση όλων (των εγγραφών)»."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Δικαίωμα προβολή όλων των γραμμών"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7527,57 +7526,57 @@ msgstr ""
"ρυθμίσεων και αυτό δεν περιορίζει τη δυνατότητα άμεσης εκτέλεσης της ίδιας "
"εντολής."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Εμφάνιση φόρμας αλλαγής κωδικού πρόσβασης"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Εμφάνιση φόρμας δημιουργίας βάσης δεδομένων"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
"Εμφάνιση ή απόκρυψη μιας στήλης που εμφανίζει τα σχόλια για όλους του "
"πίνακες."
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr "Προβολή σχολίων πίνακα"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Εμφάνιση ή απόκρυψη μιας στήλης εμφανίζοντας τη χρονοσφραγίδα Δημιουργίας "
"για όλους τους πίνακες."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Προβολή χρονοσφραγίδας δημιουργίας"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Εμφάνιση ή απόκρυψη μιας στήλης που θα εμφανίζει τη χρονοσφραγίδα Τελευταίας "
"ενημέρωσης για όλους τους πίνακες."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Εμφάνιση χρονοσφραγίδας Τελευταίας ενημερώσης"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Εμφάνιση ή απόκρυψη μιας στήλης που θα εμφανίζει τη χρονοσφραγίδα Τελευταίου "
"ελέγχου για όλους τους πίνακες."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Προβολή χρονοσφραγίδας τελευταίου ελέγχου"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7585,27 +7584,27 @@ msgstr ""
"Ορίζει αν θα εμφανίζονται οι τύποι των πεδίων σε κατάσταση επεξεργασίας/"
"εισαγωγής."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Εμφάνιση τύπων πεδίου"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Προβολή των πεδίων συναρτήσεων σε κατάσταση επεξεργασίας εισαγωγής."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Εμφάνιση πεδίων συναρτήσεων"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Αν θα εμφανίζεται επεξήγηση ή όχι."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Εμφάνιση επεξήγησης"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7613,57 +7612,57 @@ msgstr ""
"Εμφανίζει σύνδεσμο για την τεκμηρίωση της συνάρτησης [a@http://php.net/"
"manual/function.phpinfo.php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Εμφάνιση συνδέσμου phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Εμφάνιση λεπτομερών πληροφοριών διακομιστή MySQL"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
"Ορίζει αν τα δημιουργημένα ερωτήματα SQL από το phpMyAdmin πρέπει να "
"προβάλονται."
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Εμφάνιση ερωτημάτων SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
"Ορίζεται αν το ερώτημα πρέπει να παραμείνει στην οθόνη μετά την υποβολή του."
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Διατήρηση παραθύρου ερωτήματος"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Δικαίωμα προβολής στατιστικών βάσης δεδομένων και πινάκων (π.χ. χρήση χώρου "
"στο δίσκο)."
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Εμφάνιση στατιστικών"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Επισήμανση χρησιμοποιημένων πινάκων και ενεργοποίηση της δυνατότητας "
"προβολής των βάσεων δεδομένων με κλειδωμένους πίνακες."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Παράβλεψη κλειδωμένων πινάκων"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7671,11 +7670,11 @@ msgstr ""
"Απενεργοποίηση της προεπιλεγμένης προειδοποίησης που εμφανίζεται στη βασική "
"σελίδα αν βρεθεί το Suhosin."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "προειδοποίηση Suhosin"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 "
@@ -7685,11 +7684,11 @@ msgstr ""
"σελίδα αν η τιμή της ρύθμισης PHP session.gc_maxlifetime είναι λιγότερο από "
"την τιμή του «LoginCookieValidity»."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "Προειδοποίηση εγκυρότητας cookie σύνδεσης"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7697,11 +7696,11 @@ msgstr ""
"Το μέγεθος του textarea (στήλες) σε κατάσταση επεξεργασίας. Αυτή η τιμή "
"πολλαπλασιαστεί για τα textareas των ερωτημάτων (x2)."
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Στήλες textarea"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7709,33 +7708,33 @@ msgstr ""
"Το μέγεθος του textarea (γραμμές) σε κατάσταση επεξεργασίας. Αυτή η τιμή "
"πολλαπλασιαστεί για τα textareas των ερωτημάτων (x2)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Γραμμές textarea"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
"Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται μια βάση δεδομένων."
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Τίτλος του παραθύρου του φυλλομετρητή όταν δεν επιλέγεται τίποτα."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Προεπιλεγμένος τίτλος"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
"Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται ένας διακομιστής."
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται ένας πίνακας."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7747,28 +7746,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:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Λίστα αξιόπιστων διευθύνσεων IP για να επιτρέπεται/απαγορεύεται"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
"Φάκελος στο διακομιστή όπου μπορείτε να αποστείλετε αρχεία για εισαγωγή."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Φάκελος αποστολής"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Επιτρέπει την αναζήτηση εντός ολόκληρης της βάσης δεδομένων."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Χρήση αναζήτησης βάσης δεδομένων"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7776,28 +7775,28 @@ msgstr ""
"Όταν απενεργοποιηθεί, οι χρήστες δεν μπορούν να ορίσουν καμιά από τις "
"παρακάτω επιλογές, ανεξάρτητα από την επιλογή στα δεξιά."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Ενεργοποίηση της καρτέλας Δημιουργός στις ρυθμίσεις"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Έλεγχος για τελευταία έκδοση"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
"Ενεργοποιεί τον έλεγχο για τη τελευταία έκδοση στη κεντρική σελίδα του "
"phpMyAdmin."
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7810,11 +7809,11 @@ msgstr ""
"άμεση πρόσβαση στο διαδίκτυο. Η σύνταξη είναι: «όνομαδιακομιστή:"
"αριθμόςθύρας»."
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Διεύθυνση διακομιστή"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7825,19 +7824,19 @@ msgstr ""
"Πιστοποίηση. Κανένας άλλος τύπος πιστοποίησης δεν υποστηρίζεται προς το "
"παρόν."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Όνομα χρήστη διακομιστή"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "Ο κωδικός πρόσβασης για πιστοποίηση με τον διακομιστή."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Κωδικός πρόσβασης διακομιστή"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7845,36 +7844,36 @@ msgstr ""
"Ενεργοποίηση της συμπίεσης [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] για λειτουργίες εισαγωγής και εξαγωγής."
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Εισάγετε το δημόσιο κλειδί σας για τη βασική υπηρεσία reCaptcha σας."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Δημόσιο κλειδί για reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Εισάγετε το ιδιωτικό κλειδί σας για τη βασική υπηρεσία reCaptcha σας."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Ιδιωτικό κλειδί για reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
"Επιλέξτε την προεπιλεγμένη ενέργεια όταν αποστέλετε αναφορές σφάλματος."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Αποστολή αναφορών σφάλματος"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7882,11 +7881,11 @@ msgstr ""
"Τα ερωτήματα εκτελούνται πατώντας το Enter (αντί του Ctrl+Enter). Οι νέες "
"γραμμές θα εισαχθούν με το Shift+Enter."
-#: libraries/config/messages.inc.php:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr "Το Enter εκτελεί τα ερωτήματα στην κονσόλα"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7894,7 +7893,7 @@ msgstr ""
"Ενεργοποιεί την κατάσταση Μηδενικής Ρύθμισης που σας επιτρέπει να ρυθμίσετε "
"τους πίνακες αποθήκευσης ρυθμίσεων του phpMyAdmin αυτόματα."
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Ενεργοποίηση κατάστασης Μηδενικής Ρύθμισης"
@@ -7920,44 +7919,44 @@ msgstr "Πιστοποίηση HTTP"
msgid "Signon authentication"
msgstr "Σειρά επικύρωσης"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV με χρήση LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Έγγραφο Λογιστικού Φύλλου Ανοιχτού Κώδικα - ODS"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Γρήγορο"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Προσαρμοσμένο"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Επιλογές εξαγωγής βάσης δεδομένων"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "Μορφή CSV για δεδομένα MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Έγγραφο Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Έγγραφο Κειμένου Ανοιχτού Κώδικα - ODΤ"
@@ -13777,16 +13776,33 @@ msgstr "Χρήση του σελιδοδείκτη «%s» ως προεπιλε
msgid "Showing as PHP code"
msgstr "Εμφάνιση ως κώδικά PHP"
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Η τρέχουσα επιλογή δεν περιέχει μια μοναδική στήλη. Τα χαρακτηριστικά "
"επεξεργασίας πλέγματος, πλαίσια ελέγχου, Επεξεργασίας, Αντιγραφής και "
-"Διαγραφής δεν είναι διαθέσιμα."
+"Διαγραφής δεν είναι διαθέσιμα. %s"
-#: libraries/sql.lib.php:1802
+#: 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"
+msgstr ""
+"Η τρέχουσα επιλογή δεν περιέχει μια μοναδική στήλη. Τα χαρακτηριστικά "
+"επεξεργασίας πλέγματος, Επεξεργασίας, Αντιγραφής και Διαγραφής ίσως έχουν "
+"αποτέλεσμα μη επιθυμητής συμπεριφοράς. %s"
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»"
@@ -15050,6 +15066,10 @@ msgstr "Σχόλιο:"
msgid "Drag to reorder"
msgstr "Σύρτε για ανακατανομή"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Εγγραφή έναρξης:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Επιλογή πεδίων (τουλάχιστον ένα):"
diff --git a/po/en_GB.po b/po/en_GB.po
index 9cdc97beea..0cabe61044 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-03-02 14:11+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: English (United Kingdom) %s:"
msgstr "SQL query on database %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Submit Query"
@@ -3582,7 +3583,7 @@ msgstr "Update bookmark"
msgid "Delete bookmark"
msgstr "Delete bookmark"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3590,19 +3591,19 @@ msgstr ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "The server is not responding."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Please check privileges of directory containing database."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Details…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Connection for controluser as defined in your configuration failed."
@@ -3642,9 +3643,9 @@ msgstr[0] "%1$s match in %2$s"
msgstr[1] "%1$s matches in %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3698,28 +3699,28 @@ msgstr "Filter rows"
msgid "Search this table"
msgstr "Search this table"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Begin"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Previous"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Next"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "End"
@@ -3728,8 +3729,9 @@ msgstr "End"
msgid "All"
msgstr "All"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Number of rows:"
@@ -3827,16 +3829,16 @@ msgid "Query took %01.4f seconds."
msgstr "Query took %01.4f seconds."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "With selected:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3844,7 +3846,7 @@ msgstr "With selected:"
msgid "Check All"
msgstr "Check All"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Print view"
@@ -3942,11 +3944,11 @@ msgstr "Git information missing!"
msgid "Open new phpMyAdmin window"
msgstr "Open new phpMyAdmin window"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Click on the bar to scroll to top of page"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Javascript must be enabled past this point!"
@@ -4010,8 +4012,8 @@ msgstr "The primary key has been dropped."
msgid "Index %s has been dropped."
msgstr "Index %s has been dropped."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4029,7 +4031,7 @@ msgstr ""
"removed."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -4041,16 +4043,16 @@ msgid "View"
msgstr "View"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4062,10 +4064,10 @@ msgid "Structure"
msgstr "Structure"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4073,19 +4075,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Search"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4094,7 +4096,7 @@ msgid "Insert"
msgstr "Insert"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4103,21 +4105,21 @@ msgid "Privileges"
msgstr "Privileges"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operations"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Tracking"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4134,16 +4136,16 @@ msgstr "Triggers"
msgid "Database seems to be empty!"
msgstr "Database seems to be empty!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Query"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Routines"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4151,18 +4153,18 @@ msgstr "Routines"
msgid "Events"
msgstr "Events"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Designer"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns"
msgstr "Textarea columns"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4170,38 +4172,38 @@ msgstr "Textarea columns"
msgid "Databases"
msgstr "Databases"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Users"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Binary log"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replication"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variables"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Charsets"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Plug-ins"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Engines"
@@ -4226,7 +4228,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d row inserted."
msgstr[1] "%1$d rows inserted."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4898,12 +4900,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "An enumeration, chosen from the list of defined values"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Max: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4914,28 +4916,28 @@ msgstr "Max: %s%s"
msgid "MySQL said: "
msgstr "MySQL said: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Explain SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Skip Explain SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Without PHP Code"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Create PHP Code"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
@@ -4943,91 +4945,87 @@ msgid "Edit inline"
msgstr "Edit index"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sun"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s days, %s hours, %s minutes and %s seconds"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Missing parameter:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Jump to database \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "The %s functionality is affected by a known bug, see %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Click to toggle"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Browse your computer:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Select from the web server upload directory %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "The directory you set for upload work cannot be reached."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "There are no files to upload!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Empty"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Execute"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Print"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Creation"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Last update"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Last check"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Start row:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Search:"
@@ -5050,13 +5048,13 @@ msgstr "Use this value"
msgid "Rows"
msgstr "Rows"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5488,7 +5486,7 @@ msgid "Set value: %s"
msgstr "Set value: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Restore default value"
@@ -6237,10 +6235,10 @@ msgstr "Customise browse mode."
msgid "Customize default options."
msgstr "Customise default options."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6721,7 +6719,7 @@ 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:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Users cannot set a higher value"
@@ -6942,32 +6940,40 @@ msgstr "These are Edit, Copy and Delete links."
msgid "Where to show the table row links"
msgstr "Where to show the table row links"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Natural order"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Use only icons, only text or both."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Table navigation bar"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip output buffering"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6975,19 +6981,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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Default sorting order"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Use persistent connections to MySQL databases."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Persistent connections"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6997,11 +7003,11 @@ msgstr ""
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Missing phpMyAdmin configuration storage tables"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -7009,11 +7015,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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Server/library difference warning"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -7021,27 +7027,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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "MySQL reserved word warning"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "How to display the menu tabs"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "How to display various action links"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Disallow BLOB and BINARY columns from editing."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Protect binary columns"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7051,127 +7057,127 @@ msgstr ""
"storage). If disabled, this utilises JS-routines to display query history "
"(lost by window close)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Permanent query history"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "How many queries are kept in history."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Query history length"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Recoding engine"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Remember table's sorting"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Default sorting order"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
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:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Repeat headers"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Grid editing: trigger action"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Relational display column"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "Servers display options."
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Grid editing: save all edited cells at once"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Directory where exports can be saved on server."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Save directory"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Leave blank if not used."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Host authorisation order"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Leave blank for defaults."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Host authorisation rules"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Allow logins without a password"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Allow root login"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Session value"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
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:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7181,19 +7187,19 @@ msgstr ""
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey config file"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Authentication method to use."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Authentication type"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7201,11 +7207,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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Bookmark table"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7213,31 +7219,31 @@ msgstr ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Column information table"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Compress connection to MySQL server."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Compress connection"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Connection type"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Control user password"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7245,11 +7251,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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Control user"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7257,11 +7263,11 @@ msgstr ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Control host"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7271,15 +7277,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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Control port"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Hide databases matching regular expression (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7287,15 +7293,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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Disable use of INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Hide databases"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7303,23 +7309,23 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL query history table"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Hostname where MySQL server is running."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Server hostname"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "Logout URL"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7327,15 +7333,15 @@ msgstr ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Maximal number of table preferences to store"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "QBE saved searches table"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7343,13 +7349,13 @@ msgstr ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "Textarea columns"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7361,15 +7367,15 @@ msgstr ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Try to connect without password."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Connect without password"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7379,29 +7385,29 @@ msgstr ""
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
"[kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Show only listed databases"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Leave empty if not using config auth."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Password for config auth"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF schema: pages table"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7411,20 +7417,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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Database name"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Server port"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7432,11 +7438,11 @@ msgstr ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Recently used table"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7448,13 +7454,13 @@ msgstr ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "Favourite tables"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7462,11 +7468,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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Relation table"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7474,31 +7480,31 @@ msgstr ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Signon session name"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "Signon URL"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Server socket"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Enable SSL for connection to MySQL server."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Use SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7506,13 +7512,13 @@ msgstr ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "PDF schema: table coordinates"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7520,11 +7526,11 @@ msgstr ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Display columns table"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7532,11 +7538,11 @@ msgstr ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "UI preferences table"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7544,11 +7550,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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Add DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7556,11 +7562,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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Add DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7568,20 +7574,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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Add DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
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:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Statements to track"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7589,11 +7595,11 @@ msgstr ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL query tracking table"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7601,11 +7607,11 @@ msgstr ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Automatically create versions"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7613,11 +7619,11 @@ msgstr ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "User preferences storage table"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7627,11 +7633,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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Users table"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7641,11 +7647,11 @@ msgstr ""
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "User groups table"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7653,15 +7659,15 @@ msgstr ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Hidden navigation items table"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "User for config auth"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7669,19 +7675,19 @@ msgstr ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Verbose name of this server"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Allow to display all the rows"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7691,15 +7697,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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Show password change form"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Show create database form"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables."
@@ -7707,42 +7713,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:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Table comments"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
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:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Show Creation timestamp"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
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:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Show Last update timestamp"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
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:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Show Last check timestamp"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7750,27 +7756,27 @@ msgstr ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Show field types"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Display the function fields in edit/insert mode."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Show function fields"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Whether to show hint or not."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Show hint"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7778,53 +7784,53 @@ msgstr ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Show phpinfo() link"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Show detailed MySQL server information"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
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:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Show SQL queries"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
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:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Retain query box"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Show statistics"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
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:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Skip locked tables"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7832,11 +7838,11 @@ msgid ""
"detected."
msgstr "A warning is displayed on the main page if Suhosin is detected."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin warning"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7849,13 +7855,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:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Login cookie validity"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7867,11 +7873,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:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Textarea columns"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7883,31 +7889,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:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Textarea rows"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
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:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Title of browser window when nothing is selected."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Default title"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
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:795
+#: libraries/config/messages.inc.php:797
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:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7919,27 +7925,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:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "List of trusted proxies for IP allow/deny"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Upload directory"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Allow for searching inside the entire database."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Use database search"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7947,26 +7953,26 @@ msgstr ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Enable the Developer tab in settings"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Check for latest version"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7978,11 +7984,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:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Proxy url"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7992,19 +7998,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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Proxy username"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "The password for authenticating with the proxy."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Proxy password"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -8012,53 +8018,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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
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:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Public key for reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
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:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Private key for reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "Choose the default action when sending error reports."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Send error reports"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "Executed queries"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8086,44 +8092,44 @@ msgstr "HTTP authentication"
msgid "Signon authentication"
msgstr "Signon authentication"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV using LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Open-Document Spreadsheet"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Quick"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Custom"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Database export options"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV for MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Open-Document Text"
@@ -13897,15 +13903,31 @@ msgstr "Using bookmark \"%s\" as default browse query."
msgid "Showing as PHP code"
msgstr "Showing as PHP code"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
"Edit, Copy and Delete features are not available."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Current selection does not contain a unique column. Grid edit, checkbox, "
+"Edit, Copy and Delete features are not available."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problems with indexes of table `%s`"
@@ -15234,6 +15256,10 @@ msgstr "Comment:"
msgid "Drag to reorder"
msgstr "Drag to reorder"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Start row:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Select columns (at least one):"
diff --git a/po/eo.po b/po/eo.po
index dbfe67f3e6..16aa94d99e 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-01-01 17:51+0200\n"
"Last-Translator: Eliovir \n"
"Language-Team: Esperanto %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr ""
@@ -3229,25 +3230,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3287,9 +3288,9 @@ msgstr[0] ""
msgstr[1] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3343,28 +3344,28 @@ msgstr ""
msgid "Search this table"
msgstr ""
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr ""
@@ -3373,8 +3374,9 @@ msgstr ""
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3470,16 +3472,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr ""
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3487,7 +3489,7 @@ msgstr ""
msgid "Check All"
msgstr ""
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr ""
@@ -3580,11 +3582,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3648,8 +3650,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3665,7 +3667,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -3677,16 +3679,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3698,10 +3700,10 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3709,19 +3711,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr ""
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3730,7 +3732,7 @@ msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3739,21 +3741,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr ""
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3770,16 +3772,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3787,16 +3789,16 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr ""
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3804,38 +3806,38 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr ""
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr ""
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -3860,7 +3862,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4463,12 +4465,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4479,118 +4481,114 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr ""
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dim"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr ""
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr ""
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr ""
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr ""
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr ""
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr ""
@@ -4613,13 +4611,13 @@ msgstr ""
msgid "Rows"
msgstr ""
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5024,7 +5022,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -5692,10 +5690,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6139,7 +6137,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6334,828 +6332,836 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
+msgid ""
+"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772
-msgid "Show statistics"
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+msgid "Retain query box"
msgstr ""
#: libraries/config/messages.inc.php:773
+msgid "Allow to display database and table statistics (eg. space usage)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:774
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7163,52 +7169,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7216,80 +7222,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7313,44 +7319,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr ""
@@ -12614,13 +12620,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -13827,6 +13841,10 @@ msgstr ""
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr ""
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/es.po b/po/es.po
index 03205f2bef..e80c45b234 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-06-21 05:39+0200\n"
"Last-Translator: Franco \n"
-"Language-Team: Spanish "
-"\n"
+"Language-Team: Spanish \n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -301,7 +301,7 @@ msgid "Tracked tables"
msgstr "Tablas con seguimiento"
#: db_tracking.php:125 db_tracking.php:287 libraries/Menu.class.php:247
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:798
#: 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
@@ -327,7 +327,7 @@ msgid "Updated"
msgstr "Actualizado"
#: db_tracking.php:129 js/messages.php:237 libraries/Menu.class.php:551
-#: libraries/Util.class.php:4386 libraries/config.values.php:104
+#: libraries/Util.class.php:4391 libraries/config.values.php:104
#: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101
#: libraries/server_status_processes.lib.php:94 libraries/tracking.lib.php:278
msgid "Status"
@@ -516,8 +516,8 @@ msgstr "Agregar geometría"
#: gis_data_editor.php:407 js/messages.php:286
#: libraries/DbSearch.class.php:467 libraries/DisplayResults.class.php:1807
-#: libraries/Util.class.php:4885 libraries/browse_foreigners.lib.php:142
-#: libraries/core.lib.php:610 libraries/display_change_password.lib.php:109
+#: 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_import.lib.php:392 libraries/index.lib.php:44
@@ -546,8 +546,9 @@ msgstr "Agregar geometría"
#: libraries/tracking.lib.php:532 libraries/tracking.lib.php:652
#: prefs_manage.php:277 prefs_manage.php:355
#: templates/columns_definitions/column_definitions_form.phtml:59
-#: templates/index_form.phtml:238 templates/table/selection_form.phtml:75
-#: view_create.php:276 view_operations.php:106
+#: templates/index_form.phtml:238 templates/startAndNumberOfRowsPanel.phtml:14
+#: templates/table/selection_form.phtml:75 view_create.php:276
+#: view_operations.php:106
msgid "Go"
msgstr "Continuar"
@@ -651,15 +652,12 @@ msgstr "La importación se ejecutó exitosamente, se ejecutaron %d consultas."
#: import.php:692
#, php-format
-#| msgid ""
-#| "Script timeout passed, if you want to finish import, please resubmit same "
-#| "file and import will resume."
msgid ""
"Script timeout passed, if you want to finish import, please %sresubmit the "
"same file%s and import will resume."
msgstr ""
-"Tiempo de ejecución del script agotado; si desea completar la importación, %"
-"sreenvíe el mismo archivo%s y la importación continuará."
+"Tiempo de ejecución del script agotado; si desea completar la importación, "
+"%sreenvíe el mismo archivo%s y la importación continuará."
#: import.php:702
msgid ""
@@ -674,7 +672,7 @@ msgstr ""
msgid "Could not load the progress of the import."
msgstr "No se pudo cargar el progreso de la importación."
-#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:735
+#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:738
#: libraries/export.lib.php:464
#: libraries/plugins/schema/Export_Relation_Schema.class.php:302
#: user_password.php:208
@@ -760,7 +758,6 @@ msgid "PHP extension:"
msgstr "extensión PHP:"
#: index.php:349
-#| msgid "PHP Version:"
msgid "PHP version:"
msgstr "Versión de PHP:"
@@ -772,7 +769,7 @@ msgstr "Mostrar la información de PHP"
msgid "Version information:"
msgstr "Acerca de esta versión:"
-#: index.php:392 libraries/Util.class.php:429 libraries/Util.class.php:490
+#: 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/navigation/NavigationHeader.class.php:197
@@ -801,11 +798,6 @@ msgid "List of changes"
msgstr "Lista de cambios"
#: index.php:451
-#| msgid ""
-#| "Your configuration file contains settings (root with no password) that "
-#| "correspond to the default MySQL privileged account. Your MySQL server is "
-#| "running with this default, is open to intrusion, and you really should "
-#| "fix this security hole by setting a password for user 'root'."
msgid ""
"You are connected as 'root' with no password, which corresponds to the "
"default MySQL privileged account. Your MySQL server is running with this "
@@ -914,7 +906,7 @@ msgstr ""
"El servidor está utilizando Suhosin. Refiérase a la %sdocumentación%s por "
"posibles inconvenientes."
-#: js/messages.php:38 libraries/import.lib.php:125 sql.php:151
+#: js/messages.php:38 libraries/import.lib.php:125 sql.php:161
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Las sentencias \"DROP DATABASE\" están desactivadas."
@@ -956,7 +948,6 @@ msgid "Delete tracking data for these versions?"
msgstr "¿Borrar los datos de seguimiento de estas versiones?"
#: js/messages.php:53
-#| msgid "Delete tracking data row from report"
msgid "Delete entry from tracking report?"
msgstr "¿Borrar entrada del informe de seguimiento?"
@@ -1000,7 +991,6 @@ msgid "Do you really want to delete this central column?"
msgstr "¿Realmente desea eliminar esta columna central?"
#: js/messages.php:63
-#| msgid "Do you really want to delete the search \"%s\"?"
msgid "Do you really want to delete the selected items?"
msgstr "¿Desea realmente borrar los items seleccionados?"
@@ -1013,7 +1003,6 @@ msgstr ""
"relacionados a las particiones seleccionadas!"
#: js/messages.php:65
-#| msgid "Do you really want to delete the search \"%s\"?"
msgid "Do you really want to TRUNCATE the selected partition(s)?"
msgstr "¿Desea realmente TRUNCAR las particiones seleccionadas?"
@@ -1140,7 +1129,7 @@ msgstr "Simular consulta"
msgid "Matched rows:"
msgstr "Filas encontradas:"
-#: js/messages.php:114 libraries/Util.class.php:638
+#: js/messages.php:114 libraries/Util.class.php:641
msgid "SQL query:"
msgstr "consulta SQL:"
@@ -1183,12 +1172,12 @@ msgid "Other"
msgstr "Otro"
#. l10n: Thousands separator
-#: js/messages.php:131 libraries/Util.class.php:1460
+#: js/messages.php:131 libraries/Util.class.php:1463
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:133 libraries/Util.class.php:1462
+#: js/messages.php:133 libraries/Util.class.php:1465
msgid "."
msgstr "."
@@ -1294,40 +1283,40 @@ msgid "Processes"
msgstr "Procesos"
#. l10n: shortcuts for Byte
-#: js/messages.php:167 libraries/Util.class.php:1404
+#: js/messages.php:167 libraries/Util.class.php:1407
msgid "B"
msgstr "B"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:168 libraries/Util.class.php:1406
+#: js/messages.php:168 libraries/Util.class.php:1409
#: libraries/server_status_monitor.lib.php:217
msgid "KiB"
msgstr "KB"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:169 libraries/Util.class.php:1408
+#: js/messages.php:169 libraries/Util.class.php:1411
#: libraries/display_export.lib.php:702
#: libraries/server_status_monitor.lib.php:218
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:170 libraries/Util.class.php:1410
+#: js/messages.php:170 libraries/Util.class.php:1413
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:171 libraries/Util.class.php:1412
+#: js/messages.php:171 libraries/Util.class.php:1415
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:172 libraries/Util.class.php:1414
+#: js/messages.php:172 libraries/Util.class.php:1417
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:173 libraries/Util.class.php:1416
+#: js/messages.php:173 libraries/Util.class.php:1419
msgid "EiB"
msgstr "EB"
@@ -1349,7 +1338,7 @@ msgstr "Tráfico"
# This is the text showed in the tab
#: js/messages.php:179 libraries/Menu.class.php:585
-#: libraries/Util.class.php:4390 libraries/server_status_monitor.lib.php:257
+#: libraries/Util.class.php:4395 libraries/server_status_monitor.lib.php:257
msgid "Settings"
msgstr "Configuración"
@@ -1663,8 +1652,8 @@ msgstr ""
#: js/messages.php:264 libraries/Menu.class.php:350
#: libraries/Menu.class.php:453 libraries/Menu.class.php:581
-#: libraries/Util.class.php:4389 libraries/Util.class.php:4404
-#: libraries/Util.class.php:4421 libraries/config/messages.inc.php:236
+#: libraries/Util.class.php:4394 libraries/Util.class.php:4409
+#: libraries/Util.class.php:4426 libraries/config/messages.inc.php:236
#: libraries/display_import.lib.php:105
#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:238
#: setup/frames/menu.inc.php:26
@@ -1734,7 +1723,7 @@ msgstr "Formato SQL..."
msgid "Cancel"
msgstr "Cancelar"
-#: js/messages.php:290 libraries/Header.class.php:456
+#: js/messages.php:290 libraries/Header.class.php:455
#, fuzzy
#| msgid "Change settings"
msgid "Page-related settings"
@@ -1758,7 +1747,6 @@ msgid "Processing Request"
msgstr "Procesando Petición"
#: js/messages.php:297
-#| msgid "Request Aborted!!"
msgid "Request Failed!!"
msgstr "¡Petición fallida!"
@@ -1814,8 +1802,7 @@ msgstr "Copiando Base de Datos"
msgid "Changing Charset"
msgstr "Cambiando el Juego de caracteres"
-#: js/messages.php:314 libraries/Util.class.php:3234
-#| msgid "Disable foreign key checks"
+#: js/messages.php:314 libraries/Util.class.php:3237
msgid "Enable foreign key checks"
msgstr "Habilite la revisión de las claves foráneas"
@@ -1851,9 +1838,9 @@ msgstr ""
#: js/messages.php:328 libraries/DisplayResults.class.php:4857
#: libraries/DisplayResults.class.php:5115 libraries/Menu.class.php:342
#: libraries/Menu.class.php:444 libraries/Menu.class.php:577
-#: libraries/Util.class.php:3675 libraries/Util.class.php:3676
-#: libraries/Util.class.php:4388 libraries/Util.class.php:4403
-#: libraries/Util.class.php:4420 libraries/config/messages.inc.php:230
+#: libraries/Util.class.php:3680 libraries/Util.class.php:3681
+#: libraries/Util.class.php:4393 libraries/Util.class.php:4408
+#: libraries/Util.class.php:4425 libraries/config/messages.inc.php:230
#: libraries/display_export.lib.php:167 libraries/rte/rte_list.lib.php:146
#: libraries/server_privileges.lib.php:2085
#: libraries/server_privileges.lib.php:2164
@@ -1903,11 +1890,11 @@ msgstr "Mostrar ventana de consultas SQL"
#: js/messages.php:343 libraries/Console.class.php:88
#: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3450
#: libraries/DisplayResults.class.php:4839 libraries/Index.class.php:723
-#: libraries/Util.class.php:664 libraries/Util.class.php:1218
-#: libraries/Util.class.php:3673 libraries/Util.class.php:3674
+#: libraries/Util.class.php:667 libraries/Util.class.php:1221
+#: 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:775
+#: libraries/config/messages.inc.php:777
#: libraries/server_user_groups.lib.php:119
#: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179
msgid "Edit"
@@ -1943,7 +1930,6 @@ msgstr "Sin consultas almacenadas automáticamente"
#: js/messages.php:348
#, php-format
-#| msgid "Variable"
msgid "Variable %d:"
msgstr "Variable %d:"
@@ -2263,7 +2249,6 @@ msgstr "Guardar página"
#: js/messages.php:458 templates/designer/side_menu.phtml:63
#: templates/designer/side_menu.phtml:66
-#| msgid "Save page"
msgid "Save page as"
msgstr "Guardar página como"
@@ -2389,7 +2374,6 @@ msgstr ""
"funcionamiento del navegador."
#: js/messages.php:488
-#| msgid "Original string"
msgid "Original length"
msgstr "Longitud original"
@@ -2623,12 +2607,10 @@ msgid "%s argument(s) passed"
msgstr "%s argumento(s) correcto(s)"
#: js/messages.php:594
-#| msgid "Table comments"
msgid "Show arguments"
msgstr "Mostrar argumentos"
#: js/messages.php:595
-#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Ocultar argumentos"
@@ -2711,63 +2693,63 @@ msgid "December"
msgstr "Diciembre"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1620
+#: js/messages.php:655 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Ene"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1622
+#: js/messages.php:657 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1624
+#: js/messages.php:659 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1626
+#: js/messages.php:661 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1628
+#: js/messages.php:663 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:1630
+#: js/messages.php:665 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1632
+#: js/messages.php:667 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1634
+#: js/messages.php:669 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1636
+#: js/messages.php:671 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1638
+#: js/messages.php:673 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1640
+#: js/messages.php:675 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1642
+#: js/messages.php:677 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Dic"
@@ -2805,32 +2787,32 @@ msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1647
+#: js/messages.php:698 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1649
+#: js/messages.php:700 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1651
+#: js/messages.php:702 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Mie"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1653
+#: js/messages.php:704 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Jue"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1655
+#: js/messages.php:706 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Vie"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1657
+#: js/messages.php:708 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sab"
@@ -2904,57 +2886,46 @@ msgid "This field is required"
msgstr "Este campo es requerido"
#: js/messages.php:767
-#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Corrige este campo"
#: js/messages.php:768
-#| msgid "Please enter a valid page name"
msgid "Please enter a valid email address"
msgstr "Ingrese un correo electrónico válido"
#: js/messages.php:769
-#| msgid "Please enter a valid number!"
msgid "Please enter a valid URL"
msgstr "Ingrese una URL válida"
#: js/messages.php:770
-#| msgid "Please enter a valid page name"
msgid "Please enter a valid date"
msgstr "Ingrese una fecha válida"
#: js/messages.php:771
-#| msgid "Please enter a valid page name"
msgid "Please enter a valid date ( ISO )"
msgstr "Ingrese una fecha ( ISO ) válida"
#: js/messages.php:772
-#| msgid "Please enter a valid number!"
msgid "Please enter a valid number"
msgstr "Ingrese un número válido"
#: js/messages.php:773
-#| msgid "Please enter a valid number!"
msgid "Please enter a valid credit card number"
msgstr "Ingrese un número de tarjeta de crédito valido"
#: js/messages.php:774
-#| msgid "Please enter a valid length!"
msgid "Please enter only digits"
msgstr "Ingrese solo dígitos"
#: js/messages.php:775
-#| msgid "Please enter a valid page name"
msgid "Please enter the same value again"
msgstr "Ingrese el mismo valor de nuevo"
#: js/messages.php:776
-#| msgid "Please enter correct captcha!"
msgid "Please enter no more than {0} characters"
msgstr "Ingrese no más de {0} caracteres"
#: js/messages.php:777
-#| msgid "Please enter correct captcha!"
msgid "Please enter at least {0} characters"
msgstr "Ingrese al menos {0} caracteres"
@@ -2963,22 +2934,18 @@ 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
-#| msgid "Please enter a valid page name"
msgid "Please enter a value between {0} and {1}"
msgstr "Ingrese un valor entre {0} y {1}"
#: js/messages.php:780
-#| msgid "Please enter a valid length!"
msgid "Please enter a value less than or equal to {0}"
msgstr "Ingrese un valor menor o igual a {0}"
#: js/messages.php:781
-#| msgid "Please enter a valid page name"
msgid "Please enter a value greater than or equal to {0}"
msgstr "Ingrese un valor mayor o igual a {0}"
#: js/messages.php:783
-#| msgid "Please enter a valid page name"
msgid "Please enter a valid date or time"
msgstr "Ingrese una fecha u hora válida"
@@ -2989,7 +2956,7 @@ msgid "Please enter a valid HEX input"
msgstr "Ingrese una entrada válida de HEX"
#: js/messages.php:785 libraries/Message.class.php:199
-#: libraries/Util.class.php:624 libraries/core.lib.php:245
+#: 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
msgid "Error"
@@ -3093,7 +3060,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:790
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3142,7 +3109,7 @@ msgstr "durante la sesión actual"
msgid "Explain"
msgstr "Explicar"
-#: libraries/Console.class.php:216 libraries/Util.class.php:1291
+#: libraries/Console.class.php:216 libraries/Util.class.php:1294
#: libraries/sql.lib.php:278
msgid "Profiling"
msgstr "Perfilando"
@@ -3219,22 +3186,18 @@ msgid "Press Ctrl+Enter to execute query"
msgstr "Presione Ctrl+Enter para ejecutar la consulta"
#: libraries/Console.class.php:259
-#| msgid "Press Ctrl+Enter to execute query"
msgid "Press Enter to execute query"
msgstr "Presione Enter para ejecutar la consulta"
#: 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 "Orden:"
@@ -3243,7 +3206,6 @@ msgid "Count"
msgstr "Cantidad"
#: libraries/Console.class.php:292
-#| msgid "Execute every"
msgid "Execution order"
msgstr "Orden de ejecución"
@@ -3252,37 +3214,31 @@ msgid "Time taken"
msgstr "Tiempo necesario"
#: libraries/Console.class.php:298
-#| msgid "Order"
msgid "Order by:"
msgstr "Ordenar por:"
#: libraries/Console.class.php:301
-#| msgid "SQL queries"
msgid "Group queries"
msgstr "Consultas grupales"
#: libraries/Console.class.php:304
-#| msgid "SQL queries"
msgid "Ungroup queries"
msgstr "Desagrupar las consultas"
#: libraries/Console.class.php:315
-#| msgid "Show create"
msgid "Show trace"
msgstr "Mostrar rastro"
#: libraries/Console.class.php:316
-#| msgid "Hide Panel"
msgid "Hide trace"
msgstr "Ocultar rastro"
#: libraries/Console.class.php:317
-#| msgid "Count"
msgid "Count:"
msgstr "Cantidad:"
-#: libraries/Console.class.php:332 libraries/Util.class.php:1260
-#: libraries/config/messages.inc.php:777
+#: libraries/Console.class.php:332 libraries/Util.class.php:1263
+#: libraries/config/messages.inc.php:779
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3331,7 +3287,6 @@ msgid ""
msgstr ""
#: libraries/Console.class.php:385
-#| msgid "Switch to copied table"
msgid "Switch to dark theme"
msgstr "Cambiar al tema oscuro"
@@ -3370,7 +3325,6 @@ msgid "Sort:"
msgstr "Ordenar:"
#: libraries/DBQbe.class.php:630
-#| msgid "Sort:"
msgid "Sort order:"
msgstr "Orden de clasificación:"
@@ -3431,7 +3385,7 @@ msgstr "Borrar:"
msgid "SQL query on database %s:"
msgstr "Consulta a la base de datos %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Ejecutar la consulta"
@@ -3455,7 +3409,7 @@ msgstr "Actualizar favorito"
msgid "Delete bookmark"
msgstr "Eliminar favorito"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3463,19 +3417,19 @@ msgstr ""
"El servidor no está respondiendo (o el zócalo local al servidor MySQL no "
"está configurado correctamente)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "El servidor no está respondiendo."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Revisa los permisos del directorio que contiene la base de datos."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Detalles…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"La conexión para controluser, como está definida en su configuración, "
@@ -3519,9 +3473,9 @@ msgstr[0] "%1$s coincidencia en la tabla %2$s"
msgstr[1] "%1$s coincidencias en la tabla %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3575,28 +3529,28 @@ msgstr "Filtrar filas"
msgid "Search this table"
msgstr "Buscar en esta tabla"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Comenzar"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Anterior"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Siguiente"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Fin"
@@ -3605,8 +3559,9 @@ msgstr "Fin"
msgid "All"
msgstr "Todos/as"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Número de filas:"
@@ -3706,16 +3661,16 @@ msgid "Query took %01.4f seconds."
msgstr "La consulta tardó %01.4f segundos."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Para los elementos que están marcados:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3723,7 +3678,7 @@ msgstr "Para los elementos que están marcados:"
msgid "Check All"
msgstr "Marcar todos"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Vista de impresión"
@@ -3822,11 +3777,11 @@ msgstr "¡Falta información sobre Git!"
msgid "Open new phpMyAdmin window"
msgstr "Abrir nueva ventana de phpMyAdmin"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Pulse en la barra para deslizarse al tope de la página"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "¡Pasado este punto, debe tener Javascript activado!"
@@ -3890,8 +3845,8 @@ msgstr "La clave primaria ha sido eliminada."
msgid "Index %s has been dropped."
msgstr "El índice %s ha sido eliminado."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3909,7 +3864,7 @@ msgstr ""
"uno."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Servidor"
@@ -3921,16 +3876,16 @@ msgid "View"
msgstr "Visualizar"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3942,10 +3897,10 @@ msgid "Structure"
msgstr "Estructura"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3953,19 +3908,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Buscar"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3974,7 +3929,7 @@ msgid "Insert"
msgstr "Insertar"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3983,21 +3938,21 @@ msgid "Privileges"
msgstr "Privilegios"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operaciones"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Seguimiento"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4014,16 +3969,16 @@ msgstr "Disparadores"
msgid "Database seems to be empty!"
msgstr "La base de datos, ¡parece estar vacía!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Generar una consulta"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rutinas"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4031,16 +3986,16 @@ msgstr "Rutinas"
msgid "Events"
msgstr "Eventos"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Diseñador"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Columnas centrales"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4048,38 +4003,38 @@ msgstr "Columnas centrales"
msgid "Databases"
msgstr "Bases de datos"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Usuarios"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Registro binario"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replicación"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variables"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Juegos de caracteres"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Complementos"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Motores"
@@ -4104,7 +4059,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d fila insertada."
msgstr[1] "%1$d filas insertadas."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4398,7 +4353,6 @@ msgstr ""
"Ocurrió un error al crear la clave foránea en %1$s (revise los tipos de dato)"
#: libraries/TableSearch.class.php:184
-#| msgid "Table Search"
msgid "Table search"
msgstr "Búsqueda de tablas"
@@ -4407,7 +4361,6 @@ msgid "Zoom search"
msgstr "Búsqueda visual"
#: libraries/TableSearch.class.php:196 templates/table/selection_form.phtml:59
-#| msgid "Find and Replace"
msgid "Find and replace"
msgstr "Buscar y reemplazar"
@@ -4792,12 +4745,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Una enumeración, elegida de una lista de valores definidos"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Máximo: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4808,120 +4761,116 @@ msgstr "Máximo: %s%s"
msgid "MySQL said: "
msgstr "MySQL ha dicho: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Explicar SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Omitir la explicación del SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr "Analice Explicar en %s"
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Sin código PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Crear código PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Editar en línea"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d-%m-%Y a las %H:%M:%S"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s días, %s horas, %s minutos y %s segundos"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Parámetro faltante:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Saltar a la base de datos \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Pulse para conmutar"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Buscar en su ordenador:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
"Seleccionar directorio en el servidor web para subir los archivos %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
"No se puede acceder al directorio que seleccionó para subir los archivos."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "¡No hay archivos para subir!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Vaciar"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Ejecutar"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Imprimir"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Creación"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Última actualización"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Última revisión"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Fila de inicio:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Buscar:"
@@ -4944,13 +4893,13 @@ msgstr "Use este valor"
msgid "Rows"
msgstr "Filas"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5205,7 +5154,6 @@ msgid "display column"
msgstr "Mostrar tabla de columnas"
#: libraries/config.values.php:102
-#| msgid "Welcome to %s"
msgid "Welcome"
msgstr "Bienvenido"
@@ -5233,17 +5181,14 @@ msgid "Never send error reports"
msgstr "Nunca enviar reportes de error"
#: libraries/config.values.php:132
-#| msgid "Set default"
msgid "Server default"
msgstr "Servidor predeterminado"
#: libraries/config.values.php:133
-#| msgid "Enabled"
msgid "Enable"
msgstr "Habilitar"
#: libraries/config.values.php:134
-#| msgid "Disabled"
msgid "Disable"
msgstr "Deshabilitar"
@@ -5380,7 +5325,7 @@ msgid "Set value: %s"
msgstr "Valor establecido: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Restaurar valor predeterminado"
@@ -6150,10 +6095,10 @@ msgstr "Cambiar las opciones de la modalidad de visualización."
msgid "Customize default options."
msgstr "Personalizar las opciones predeteminadas."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6642,7 +6587,7 @@ 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:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Los usuarios no pueden definir un valor más alto"
@@ -6867,34 +6812,42 @@ msgstr "Estos son los enlaces para Editar, Copiar y Borrar."
msgid "Where to show the table row links"
msgstr "Donde mostrar los enlaces de filas de tabla"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Orden natural"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Use solamente íconos, solamente texto o ambos."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Barra de navegación mediante tablas"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "Buffer de salida de GZip"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6902,19 +6855,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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Orden de despliegue predeterminado"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Use conexiones persistentes para las bases de datos MySQL."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Conexiones persistentes"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6924,11 +6877,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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Faltan las tablas de almacenaje de configuración de phpMyAdmin"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6936,11 +6889,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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Advertencia de diferencia servidor/biblioteca"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6949,27 +6902,27 @@ msgstr ""
"Estructura si algún nombre de columna en una tabla es una palabra reservada "
"de MySQL."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Advertencia de palabra reservada de MySQL"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Cómo mostrar las pestañas del menú"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Cómo mostrar varios enlaces de acciones"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "No permitir la edición de columnas BLOB y BINARIAS."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Proteger los campos binarios"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6980,126 +6933,126 @@ msgstr ""
"rutinas JavaScript para mostrar el histórico de consultas (olvidado al "
"cerrar la ventana)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Histórico permanente de consultas"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Cuántas consultas se guardan en el histórico."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Longitud del histórico de consultas"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Motor de recodificación"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Recordar ordenamiento de la tabla"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
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:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Ordenación predeterminada por clave primaria"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
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:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Repetir cabeceras"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
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:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Mostrar columna de relación"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "Opciones de visualización"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
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:558
+#: libraries/config/messages.inc.php:560
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:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Directorio de almacenamiento"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Deje en blanco si no necesita usarlo."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Orden en que se autentica el Host"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Deje en blanco para usar los valores predeterminados."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Reglas de autorización del Host"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Permitir inicio de sesión sin contraseña"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Permitir el inicio de sesión como root"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Huso horario de la sesión"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
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:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "Dominio HTTP (Realm)"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7109,19 +7062,19 @@ msgstr ""
"dispositivo SweKey[/a] (no localizado en su raíz de documentos; valor "
"sugerido: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "Archivo de configuración SweKey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Método de autenticación a usar."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Tipo de autenticación"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7129,11 +7082,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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Agregar tabla a favoritos"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7141,33 +7094,33 @@ msgstr ""
"Dejar en blanco para evitar comentarios/tipos MIME en celdas, sugerido: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Tabla con información de la columna"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Conexión de compresión con el servidor SQL."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Conexión de compresión"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Tipo de conexión"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Controlar la contraseña del usuario"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7175,11 +7128,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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Controlar al usuario"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7187,11 +7140,11 @@ msgstr ""
"Alternativa para guardar el almacenamiento de configuración; deje vacío para "
"utilizar el ya definido."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Anfitrión de control"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7201,17 +7154,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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Puerto de control"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
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:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7219,15 +7172,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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Deshabilitar el uso de INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Ocultar las bases de datos"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7235,23 +7188,23 @@ msgstr ""
"Dejar en blanco para evitar soporte de histórico de consultas SQL, sugerido: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Tabla de histórico de consultas SQL"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Descripción del servidor."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Nombre del servidor"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL de fin de sesión"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7259,15 +7212,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:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Número máximo de preferencias sobre tablas a almacenar"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "Tabla QBE de búsquedas guardadas"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7275,11 +7228,11 @@ msgstr ""
"Dejar en blanco para omitir la compatibilidad con búsquedas guardadas QBE, "
"sugerido: [kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Tabla de columnas centrales"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7287,15 +7240,15 @@ msgstr ""
"Dejar en blanco para desactivar el soporte a las columnas centrales, "
"sugerencia: [kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Intente conectar sin contraseña."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Conecte sin contraseña"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7305,30 +7258,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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Muestre solamente las bases de datos listadas"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Deje vacío si no está usando config auth."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Contraseña para config auth"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "Esquema de PDF: tabla de páginas"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7339,22 +7292,22 @@ msgstr ""
"completa. Deje en blanco para que no exita soporte. Predeterminado: "
"[kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nombre de la base de datos"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Puerto del servidor"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7362,11 +7315,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:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Tabla recientemente utilizada"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7374,11 +7327,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:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Tablas favoritas"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7387,11 +7340,11 @@ msgstr ""
"relation]relation-links[/a], de manera predeterminada: [kbd]pma__relation[/"
"kbd]."
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Tabla de relaciones"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7399,33 +7352,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:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Nombre de la sesión al signon"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "URL de signon"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Puerto del servidor"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Habilitar SSL para conexión con el servidor SQL."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Usar SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7433,11 +7386,11 @@ msgstr ""
"Dejar en blanco para evitar soporte de esquema en PDF, sugerido: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Esquema en PDF y diseñador: tabla de coordenadas"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7445,11 +7398,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:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Mostrar tabla de columnas"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7458,11 +7411,11 @@ msgstr ""
"interfaz de tablas entre sesiones, valor sugerido: [kbd]pma__table_uiprefs[/"
"kbd]."
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Preferencias de interfaz de tablas"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7470,11 +7423,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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Agregar DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7482,11 +7435,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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Agregar DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7494,21 +7447,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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Agregar DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
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:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Sentencias a hacer seguimiento"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7516,11 +7469,11 @@ msgstr ""
"Deje en blanco para eliminar soporte de seguimiento de consultas SQL, valor "
"sugerido: [kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Tabla de seguimiento de consultas SQL"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7528,11 +7481,11 @@ msgstr ""
"Si el mecanismo de seguimiento crea versiones para tablas y vistas "
"automáticamente o no."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Crear versiones automáticamente"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7540,11 +7493,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:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Tabla de almacenamiento de preferencias de usuario"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7554,11 +7507,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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Tabla de usuarios"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7568,11 +7521,11 @@ msgstr ""
"personalizables; dejar cualquiera de ellas en blanco desactivará esta "
"funcionalidad; valor sugerido: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Usar la tabla de groupos («groups»)"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7580,34 +7533,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:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Tabla de elementos de navegación ocultos"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Usuario para config auth"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
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:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Nombre del servidor, forma extendida"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Permitir que se muestren todas las filas"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7617,15 +7570,15 @@ 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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Mostrar el formulario para cambio de contraseña"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Mostrar el formulario para crear una base de datos"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables."
@@ -7634,45 +7587,45 @@ msgstr ""
"Mostrar o esconder una columna con las marcas temporales de creación para "
"todas las tablas."
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Comentarios de la tabla"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
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:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Mostrar marca temporal de creación"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
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:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Mostrar marca temporal de última actualización"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
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:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Mostrar marca temporal de última revisión"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7680,27 +7633,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:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Mostrar tipo de campos"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
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:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Mostrar los campos de función"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Si mostrar ayudas o no."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Mostrar ayudas"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7708,55 +7661,55 @@ msgstr ""
"Mostrar enlace a salida de [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Mostrar el enlace phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Mostrar información detallada acerca del servidor SQL"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
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:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Mostrar las consultas SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
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:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 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:771
+#: libraries/config/messages.inc.php:773
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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Mostrar estadísticas"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
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:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Saltarse las tablas bloqueadas"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7764,11 +7717,11 @@ msgid ""
"detected."
msgstr "Mostrar advertencia en la página principal si se detecta Suhosin."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Advertencia Suhosin"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 "
@@ -7778,11 +7731,11 @@ msgstr ""
"Estructura si algún nombre de columna en una tabla es una palabra reservada "
"de MySQL."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "ADVERTENCIA de inicio de sesión cookie validez"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7795,12 +7748,12 @@ msgstr ""
"será aumentado en áreas de texto para consultas SQL (x2) y en la venta de "
"consultas (x1,25)."
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Columnas para las áreas de texto"
# See translation string 813
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7813,31 +7766,31 @@ msgstr ""
"aumentado en áreas de texto para consultas SQL (x2) y en la venta de "
"consultas (x1,25)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Filas para áreas de texto"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
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:791
+#: libraries/config/messages.inc.php:793
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:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Título predeterminado"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
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:795
+#: libraries/config/messages.inc.php:797
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:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7849,27 +7802,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:798
+#: libraries/config/messages.inc.php:800
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:799
+#: libraries/config/messages.inc.php:801
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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Directorio desde donde se cargarán los archivos"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
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:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Use búsquedas en la base de datos"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7878,28 +7831,28 @@ msgstr ""
"opciones situadas más abajo, sin importar la casilla de la derecha."
# see translation string 529
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Habilitar la pestaña Desarrolladores en la configuración"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 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:806
+#: libraries/config/messages.inc.php:808
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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7911,11 +7864,11 @@ msgstr ""
"el que está instalado phpMyAdmin no tiene acceso directo a internet. El "
"formato es: \"servidor:puerto\"."
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "URL de proxy"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7926,19 +7879,19 @@ msgstr ""
"una autenticación básica. Actualmente no se posee compatibilidad con otros "
"tipos de autenticación."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Nombre de usuario del proxy"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "La contraseña para autenticar con el proxy."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Contraseña del proxy"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7946,45 +7899,45 @@ 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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
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:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Llave púlica para reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
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:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Llave privada para reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
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:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Enviar reportes de error"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7992,7 +7945,7 @@ 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:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Activar modo «Configuración Zero»"
@@ -8021,44 +7974,44 @@ msgstr "Autenticación por HTTP"
msgid "Signon authentication"
msgstr "Autenticación por sesión"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV usando LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Hoja de cálculo Open Document"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Rápido"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Personalizado"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Opciones de exportación de la base de datos"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV para datos de MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Texto Open Document"
@@ -13925,15 +13878,31 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Mostrar como código PHP"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"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."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %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."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas con los índices de la tabla `%s`"
@@ -15220,6 +15189,10 @@ msgstr "Comentario:"
msgid "Drag to reorder"
msgstr "Arrastrar para reordenar"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Fila de inicio:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Seleccionar campos (al menos uno):"
diff --git a/po/et.po b/po/et.po
index 491c0da859..35a0232816 100644
--- a/po/et.po
+++ b/po/et.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-06-19 16:32+0200\n"
"Last-Translator: Kristjan Räts \n"
"Language-Team: Estonian %s:"
msgstr "SQL päring %s andmebaasis:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Saada päring"
@@ -3374,26 +3375,26 @@ msgstr "Uuenda järjehoidjat"
msgid "Delete bookmark"
msgstr "Kustuta järjehoidja"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
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:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Server ei vasta."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Palun kontrolli andmebaasi sisaldava kataloogi õigusi."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Detailid…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Sinu seadistuses määratud kontrollkasutajaga ühendamine ebaõnnestus."
@@ -3433,9 +3434,9 @@ msgstr[0] "%1$s vaste %2$s tabelis"
msgstr[1] "%1$s vastet %2$s tabelis"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3489,28 +3490,28 @@ msgstr "Filtreeritud read"
msgid "Search this table"
msgstr "Otsi sellest tabelist"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Algus"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Eelmine"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Järgmine"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Lõpp"
@@ -3519,8 +3520,9 @@ msgstr "Lõpp"
msgid "All"
msgstr "Kõik"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Ridade hulk:"
@@ -3617,16 +3619,16 @@ msgid "Query took %01.4f seconds."
msgstr "päring kestis %01.4f sekundit."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Valitutega:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3634,7 +3636,7 @@ msgstr "Valitutega:"
msgid "Check All"
msgstr "Vali kõik"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Prindi vaade"
@@ -3729,11 +3731,11 @@ msgstr "Git'i informatsioon puudub!"
msgid "Open new phpMyAdmin window"
msgstr "Ava uus phpMyAdmini aken"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Kliki ribal, et lehe alguessse kerida"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Javascript peab olema lubatud!"
@@ -3797,8 +3799,8 @@ msgstr "Primaarvõti on kustutatud."
msgid "Index %s has been dropped."
msgstr "%s indeks on kustutatud."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3816,7 +3818,7 @@ msgstr ""
"kustutatakse."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -3828,16 +3830,16 @@ msgid "View"
msgstr "Vaade"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3849,10 +3851,10 @@ msgid "Structure"
msgstr "Struktuur"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3860,19 +3862,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Otsi"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3881,7 +3883,7 @@ msgid "Insert"
msgstr "Lisa"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3890,21 +3892,21 @@ msgid "Privileges"
msgstr "Õigused"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Tegevused"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Jälgimine"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3921,16 +3923,16 @@ msgstr "Päästikud"
msgid "Database seems to be empty!"
msgstr "Andmebaas tundub olevat tühi!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Päring"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Funktsioonid"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3938,16 +3940,16 @@ msgstr "Funktsioonid"
msgid "Events"
msgstr "Sündmused"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Kujundaja"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Kesksed veerud"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3955,38 +3957,38 @@ msgstr "Kesksed veerud"
msgid "Databases"
msgstr "Andmebaasid"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Kasutajad"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Binaarne logi"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Paljundamine"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Muutujad"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Märgitabelid"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Pluginad"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Mootorid"
@@ -4011,7 +4013,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "Lisati %1$d rida."
msgstr[1] "Lisati %1$d rida."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4676,12 +4678,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Loetelu, mis on valitud määratletud väärtuste nimekirjast"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Maksimaalne: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4692,118 +4694,114 @@ msgstr "Maksimaalne: %s%s"
msgid "MySQL said: "
msgstr "MySQL vastas: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Selgita SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Jäta SQL selgitus vahele"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr "Analüüsi ja seleta kohal %s"
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Ilma PHP koodita"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Loo PHP kood"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Muuda kohapeal"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Päike"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y kell %I:%M %p"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s päeva, %s tundi, %s minutit ja %s sekundit"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Puudulik parameeter:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Mine \"%s\" andmebaasi."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Seda %s funktsionaalsust mõjutas tuntud viga, vaata %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Muuda"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Sirvi oma arvutist:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Vali veebiserveri üleslaadimise kataloogist %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Valitud üleslaadimise kataloogile ei pääse ligi."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Puuduvad failid, mida üles laadida!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Tühjenda"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Teosta"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Prindi"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Loodud"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Viimati uuendatud"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Viimane kontroll"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Alusta reaga:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Otsi:"
@@ -4826,13 +4824,13 @@ msgstr "Kasuta seda väärtust"
msgid "Rows"
msgstr "Ridu"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5247,7 +5245,7 @@ msgid "Set value: %s"
msgstr "Sea väärtus: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Taasta vaikimisi väärtus"
@@ -5987,10 +5985,10 @@ msgstr "Kohanda sirvimise viisi."
msgid "Customize default options."
msgstr "Kohanda vaikimisi valikuid."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6469,7 +6467,7 @@ 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:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Kasutajad ei saa määrata kõrgemat väärtust"
@@ -6674,34 +6672,42 @@ msgstr "Need on lingid Muuda, Kopeeri ja Kustuta."
msgid "Where to show the table row links"
msgstr "Kus näidata tabeli rea linke"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Algne järjekord"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Kasuta ainult ikoone, ainult teksti või mõlemat."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Tabeli navigeerimisriba"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip väljundi puhverdamine"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6709,19 +6715,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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Vaikimisi sorteerimise järjekord"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Kasuta püsiühendusi MySQL andmebaasidesse."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Püsiühendused"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6730,11 +6736,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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Puudulikud phpMyAdmini seadistuse salvestuse tabelid"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6742,11 +6748,11 @@ msgstr ""
"Keela vaikimisi hoiatus, mis kuvatakse MySQL teegi ja serveri erinevuste "
"tuvastamisel."
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Serveri/teegi erinevuse hoiatus"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6754,27 +6760,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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "MySQL reserveeritud sõna hoiatus"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Kuidas kuvada menüü sakke"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Kuidas kuvada erinevate tegevuste linke"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Keela BLOB ja BINARY veergude muutmine."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Kaitse binaarseid veergusid"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6785,120 +6791,120 @@ msgstr ""
"päringu ajaloo näitamiseks Javascripti funktsioone (ajalugu kaob akna "
"sulgemisel)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Püsiv päringute ajalugu"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Mitu päringut ajaloos hoitakse."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Päringu ajaloo pikkus"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr "Vali funktsioon, mida kasutatakse märgitabeli teisendamisel."
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Ümberkodeerimise mootor"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Jäta meelde tabeli sortimisalus"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr "Vaikimisi sortimisrežiim primaarvõtmega tabelitele."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Primaarvõtme vaimisi sortimisrežiim"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
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:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Korda päiseid"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Võrgustikmuutmine: tegevuse päästik"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Suhtestuskuva"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "Kuvamise seaded"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Võrgustukmuutmine: salvesta kõik muudetud lahtrid"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Serveri kataloog, kuhu eksporditud failid salvestatakse."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Salvestamise kataloog"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Kui ei kasutata, siis jäta tühjaks."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Hosti autentimise järjekord"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Vaikimisi jäta tühjaks."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Hosti autentimise reeglid"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Luba paroolita sisselogimised"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Luba sisse logida 'root' kasutajana"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Seansi ajatsoon"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
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:569
+#: libraries/config/messages.inc.php:571
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:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP ligipääsuala"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -6907,19 +6913,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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey seadistuse fail"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Kasutatav autentimise meetod."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Autentimise tüüp"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -6927,11 +6933,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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Järjehoidja tabel"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -6939,32 +6945,32 @@ msgstr ""
"Jäta tühjaks, kui puuduvad kommentaarid/mime-tüübid, soovitatav: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Veeru teabe tabel"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Tihenda MySQL ühendus serveriga."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Tihenda ühendus"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Ühenduse tüüp"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Kontrollkasutaja parool"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -6972,11 +6978,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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Kontrollkasutaja"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -6984,11 +6990,11 @@ msgstr ""
"Seadistuse salvestuse säilitamise asendushost. Jäta tühjaks, kui soovid "
"kasutada juba määratud hosti."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Kontrollhost"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -6998,15 +7004,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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Kontrollport"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Peida andmebaasid, mis kattuvad regulaaravaldisega (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7015,15 +7021,15 @@ msgstr ""
"bugs/2606/]PMA bug tracker[/a] ja [a@http://bugs.mysql.com/19588]MySQL Bugs[/"
"a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Keela INFORMATION_SCHEMA kasutus"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Peida andmebaasid"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7031,23 +7037,23 @@ msgstr ""
"Jäta tühjaks, kuid puudub SQL päringu ajaloo tugi, soovitatav: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL päringu ajaloo tabel"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Hostinimi, kus MySQL server töötab."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Serveri hostinimi"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "Väljalogimise URL"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7055,15 +7061,15 @@ msgstr ""
"Piirab andmebaasi salvestatud tabeli eelistuste hulka, vanimad sissekanded "
"kustutatakse automaatselt."
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Suurim hulk tabeli eelistusi, mida salvestada"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "Tabel näitepõhiste päringute salvestamiseks"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7071,11 +7077,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:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Kesksete veergude tabel"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7083,15 +7089,15 @@ msgstr ""
"Jäta tühjaks, et keskseid veerge mitte kasutada, soovitatav: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Ürita ühendada ilma paroolita."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Ühenda ilma paroolita"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7101,30 +7107,30 @@ msgstr ""
"ette kurakaldkriipsu (\\). S.t kasuta [kbd]'my\\_db'[/kbd], aga mitte "
"[kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Näita ainult loendatud andmebaase"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Jäta tühjaks, kui ei kasuta 'config' autentimist."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "'config' autentimise parool"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF skeem: lehtede tabel"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7134,22 +7140,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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Andmebaasi nimi"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Serveri port"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7157,11 +7163,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:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Hiljuti kasutatud tabel"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7169,11 +7175,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:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Lemmikute tabel"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7181,11 +7187,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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Seose tabel"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7193,33 +7199,33 @@ msgstr ""
"Vaata näiteks [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]autentimise tüüpe[/a]."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Sisselogimise seansi nimi"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "Sisselogimise URL"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Serveri sokkel"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Luba SSL ühendus MySQL serverisse."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Kasuta SSL'i"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7227,11 +7233,11 @@ msgstr ""
"Jäta tühjaks, kui puudub PDF skeemi tugi, soovitatav: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Disainer ja PDF skeem: tabeli koordinaadid"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7239,11 +7245,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:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Näita veergude tabelit"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7251,11 +7257,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:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "UI eelistuste tabel"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7263,42 +7269,42 @@ msgstr ""
"Kas lisada lause DROP DATABASE IF EXISTS andmebaasi loomise logisse "
"esimeseks."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Lisa DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Lisa DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Lisa DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
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:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Käsud, mida jälgida"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7306,22 +7312,22 @@ msgstr ""
"Jäta tühjaks, kui puudub SQL päringu jälgimise tugi, soovitatav: "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL päringu jälgimise tabel"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
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:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Loo versioonid automaatselt"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7329,11 +7335,11 @@ msgstr ""
"Jäta tühjaks, kui kasutaja eelistusi andmebaasis ei hoita, soovitatav: "
"[kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Kasutaja eelistusi säilitav tabel"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7343,11 +7349,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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Kasutajate tabel"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7357,11 +7363,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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Kasutajagruppide tabel"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7369,15 +7375,15 @@ msgstr ""
"Jäta tühjaks, et keelata navigeerimiselementide peitmine ja kuvamine, "
"soovitatav: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Peidetud navigeerimiselementide tabel"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "'config' autentimise kasutaja"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7385,19 +7391,19 @@ msgstr ""
"Selle serveri kasutajasõbralik kirjeldus. Kui jätad tühjaks, siis näidatakse "
"selle asemel hostinime."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Selle serveri sõnaline nimi"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Luba näidata kõiki ridu"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7407,76 +7413,76 @@ msgstr ""
"autentimist, sest parool on seadistusfailis raskesti kodeeritud. See ei "
"piira sama käsu otse käivitamist."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Näita parooli muutmise vormi"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Näita andmebaasi loomise vormi"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
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:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr "Kuva tabeli kommentaarid"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
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:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Näita loomise ajatemplit"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
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:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Näita viimase uuendamise ajatemplit"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
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:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Näita viimase kontrolli ajatemplit"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
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:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Näita välja tüüpe"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Näita funktsiooni väljasid muutmisel/lisamisel."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Näita funktsiooni väljasid"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Kas näidata vihjet või mitte."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Näita vihjet"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7484,63 +7490,63 @@ msgstr ""
"Näita linki [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"väljundisse."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Näita phpinfo() linki"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Näita detailset MySQL serveri teavet"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
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:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Näita SQL päringuid"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
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:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Säilita päringu kast"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Näita statistikat"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
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:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Jäta lukustatud tabelid vahele"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
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:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin'i hoiatus"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 "
@@ -7549,11 +7555,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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "Sisselogimise küpsise kehtivuse hoiatus"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7561,11 +7567,11 @@ msgstr ""
"Tekstiala suurus (veerud) muutmise vaates. See väärtus tõstetakse esile SQL "
"päringu tekstialades (*2)."
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Tekstiala veerud"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7573,31 +7579,31 @@ msgstr ""
"Tekstiala suurus (read) muutmise vaates. See väärtus tõstetakse esile SQL "
"päringu tekstialades (*2)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Tekstiala read"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr "Veebilehitseja akna pealkiri, kui valitud on andmebaas."
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Veebilehitseja akna pealkiri, kui valitud pole mitte midagi."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Vaikimisi pealkiri"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "Veebilehitseja akna pealkiri, kui valitud on server."
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "Veebilehitseja akna pealkiri, kuid valitud on tabel."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7609,27 +7615,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:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Usaldusväärsete prokside nimekiri lubatud/keelatud IP'de jaoks"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Üleslaadimise kataloog"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Luba otsida tervest andmebaasist."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Kasuta andmebaasi otsingut"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7637,26 +7643,26 @@ msgstr ""
"Kui keelatud, siis kasutajad ei saa kasutada ühtegi allolevat valikut, "
"sõltumata paremal asuvast märkeruudust."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Luba sätetes kujundaja vaheleht"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Kontrolli uusimat versiooni"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "Lubab phpMyAdmini pealehel kontrollida viimast versiooni."
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7668,11 +7674,11 @@ msgstr ""
"on paigaldatud, ei oma otseühendust Internetiga. Formaat on \"hostinimi:port"
"\"."
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Proksi aadress"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7682,19 +7688,19 @@ msgstr ""
"Kui kasutajanimi on antud, kastutatakse lihtsa autentimise (Basic "
"Authentication) meetodit. Muud meetodid ei ole hetkel toetatud."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Proksi kasutajanimi"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "Salasõna proksi serveris autentimiseks."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Proksi parool"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7702,35 +7708,35 @@ msgstr ""
"Luba [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] tihendamine "
"importimistel ja eksportimistel."
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
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:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "reCaptcha avalik võti"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
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:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "reCaptcha salajane võti"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "Vali vaikimisi tegevus vearaportite saatmisel."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Saada vearaport"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7738,11 +7744,11 @@ msgstr ""
"Päringud käivitatakse klahvi Enter vajutamisel (Ctrl+Enter asemel). "
"Reavahetuseks kasuta kombinatsiooni Shift+Enter."
-#: libraries/config/messages.inc.php:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr "Enter käivitab päringud konsoolil"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7750,7 +7756,7 @@ msgstr ""
"Luba Nullseadistuse režiim, mis lubab sul häälestada phpMyAdmin'i "
"seadistuste salvestamise tabelid automaatselt."
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Luba Nullseadustuse režiim"
@@ -7774,44 +7780,44 @@ msgstr "HTTP autentimine"
msgid "Signon authentication"
msgstr "Sisselogimise (signon) autentimine"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV kasutades LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument tabel"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Kiire"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Kohandatud"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Andmebaasi eksportimise valikud"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV MS Exceli jaoks"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "OpenDocument tekst"
@@ -13497,16 +13503,33 @@ msgstr "\"%s\" järjehoidjat kasutatakse vaikimisi sirvimise päringuna."
msgid "Showing as PHP code"
msgstr "Näitan PHP koodina"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"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."
-#: libraries/sql.lib.php:1802
+#: 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."
+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."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probleemid `%s` tabeli indeksitega"
@@ -14760,6 +14783,10 @@ msgstr "Kommentaar:"
msgid "Drag to reorder"
msgstr "Järjekorra muutmiseks lohista"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Alusta reaga:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Vali veerud (vähemalt üks):"
diff --git a/po/eu.po b/po/eu.po
index ef482fe2d2..01b0069735 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-03-31 14:23+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Basque %s:"
msgstr "SQL-kontsulta %s datu-basean:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Kontsulta bidali"
@@ -3683,25 +3684,25 @@ msgstr "Erakutsi laster-marka"
msgid "Delete bookmark"
msgstr "Bilatu"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3743,9 +3744,9 @@ msgstr[0] "%s emaitza %s taulan"
msgstr[1] "%s emaitzak %s taulan"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3804,16 +3805,16 @@ msgstr "Eremuak"
msgid "Search this table"
msgstr "Datu-basean bilatu"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Hasi"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3821,8 +3822,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Aurrekoa"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3830,8 +3831,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "Hurrengoa"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3842,8 +3843,9 @@ msgstr "Amaiera"
msgid "All"
msgstr "Guztiak"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows:"
@@ -3959,16 +3961,16 @@ msgid "Query took %01.4f seconds."
msgstr "Kontsulta exekutatzeko denbora %01.4f seg"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Ikurdunak:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3976,7 +3978,7 @@ msgstr "Ikurdunak:"
msgid "Check All"
msgstr "Guztiak egiaztatu"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Inprimatzeko ikuspegia"
@@ -4076,11 +4078,11 @@ msgstr "Saioa hasteko informazioa"
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4147,8 +4149,8 @@ msgstr "Lehen mailako gakoa ezabatu da."
msgid "Index %s has been dropped."
msgstr "%s indizea ezabatu da."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4164,7 +4166,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Zerbitzaria"
@@ -4176,16 +4178,16 @@ msgid "View"
msgstr "Ikusipegia"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4197,10 +4199,10 @@ msgid "Structure"
msgstr "Egitura"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4208,19 +4210,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Bilatu"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4229,7 +4231,7 @@ msgid "Insert"
msgstr "Txertatu"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4238,21 +4240,21 @@ msgid "Privileges"
msgstr "Pribilegioak"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Eragiketak"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4269,16 +4271,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Kontsulta"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4286,18 +4288,18 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns"
msgstr "Gehitu/ezabatu irizpide-zutabea"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4305,41 +4307,41 @@ msgstr "Gehitu/ezabatu irizpide-zutabea"
msgid "Databases"
msgstr "Datu-baseak"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "Erabiltzailea"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
#, fuzzy
msgid "Binary log"
msgstr "Binarioa "
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Ihardetsi"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Aldagaiak"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Karaktere-multzoa"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -4364,7 +4366,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -5012,12 +5014,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5028,28 +5030,28 @@ msgstr ""
msgid "MySQL said: "
msgstr "MySQL-ek zera dio: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "SQL-a azaldu"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "SQL-ren azalpena saltatu"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "PHP Koderik gabe"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP kodea sortu"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Print view"
msgctxt "Inline edit query"
@@ -5057,94 +5059,88 @@ msgid "Edit inline"
msgstr "Inprimatzeko ikuspegia"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Iga"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y-%m-%d, %H:%M:%S"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s egun, %s ordu, %s minutu eta %s segundu"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "\"%s\" datu-basera joan."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Hutsik"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Inprimatu"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Sortzea"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Azken eguneraketa"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Azken egiaztapena"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "Lar"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5169,13 +5165,13 @@ msgstr "Erabili balio hau"
msgid "Rows"
msgstr "Errenkadak"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5629,7 +5625,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6347,10 +6343,10 @@ msgstr ""
msgid "Customize default options."
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV datuak"
@@ -6835,7 +6831,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -7039,890 +7035,898 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Taularen \"Order By\" aldatu"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Taularen epigrafea"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Taula berrizendatu izen honetara: "
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, 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:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "Erlazio-eskema"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
msgid "For display Options"
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Saioaren balioa"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Documentation"
msgid "Authentication method to use."
msgstr "Dokumentazioa"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, 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:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
#, fuzzy
msgid "Connection type"
msgstr "Konexioak"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Edozein ostalari"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Edozein ostalari"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
#, fuzzy
msgid "Hide databases"
msgstr "Datu-baserik ez"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
#, fuzzy
msgid "Server hostname"
msgstr "Zerbitzariaren hautaketa"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Gehitu/ezabatu irizpide-zutabea"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Pasahitza ez aldatu"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Datu-basea"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
#, fuzzy
msgid "Server port"
msgstr "Zerbitzariaren hautaketa"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Taula aztertu"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Aldagaiak"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
#, fuzzy
msgid "Relation table"
msgstr "Taula konpondu"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
#, fuzzy
msgid "Server socket"
msgstr "Zerbitzariaren hautaketa"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, fuzzy
msgid "Enable SSL for connection to MySQL server."
msgstr ""
"Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Zutabearen iruzkinak erakusten"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Sententziak"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
msgid "Automatically create versions"
msgstr "Zerbitzariaren bertsioa"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Taulak erabili"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Host taula erabili"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Taularen iruzkinak"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "PHP informazioa erakutsi"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
msgid "Show field types"
msgstr "Taulak erakutsi"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Sareta erakutsi"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
#, fuzzy
msgid "Show SQL queries"
msgstr "Kontsulta osoak erakutsi"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL kontsulta"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
#, fuzzy
msgid "Show statistics"
msgstr "Errenkadaren estatistikak"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Gehitu/ezabatu irizpide-zutabea"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Lehenetsia"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7930,52 +7934,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7983,85 +7987,85 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
msgid "Proxy username"
msgstr "Erabiltzaile-izena:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Pasahitza"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
msgid "Send error reports"
msgstr "Zerbitzariaren hautaketa"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL kontsulta"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Local monitor configuration incompatible"
msgid "Enable Zero Configuration mode"
@@ -8087,46 +8091,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Dokumentazioa"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "MS Excel datuentzako CSV"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -13953,13 +13957,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -15346,6 +15358,12 @@ msgstr "Iruzkinak"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "Lar"
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/fa.po b/po/fa.po
index 7988039a7b..4b8932488d 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-12-18 09:39+0200\n"
"Last-Translator: HM \n"
"Language-Team: Persian %s:"
msgstr "پرس و جوي SQL از پايگاه داده %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "ثبت کوئری"
@@ -3641,25 +3642,25 @@ msgstr "نمایش تاریخچه"
msgid "Delete bookmark"
msgstr "حذف رابطه"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3699,9 +3700,9 @@ msgstr[0] "%1$s همتا در %2$s"
msgstr[1] "%1$s همتا در %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3761,28 +3762,28 @@ msgstr "فیلتر"
msgid "Search this table"
msgstr "جستجو در پايگاه داده"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "شروع"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "قبلی"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "بعدی"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "انتها"
@@ -3791,8 +3792,9 @@ msgstr "انتها"
msgid "All"
msgstr "همه"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows:"
@@ -3901,16 +3903,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "موارد انتخاب شده :"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3918,7 +3920,7 @@ msgstr "موارد انتخاب شده :"
msgid "Check All"
msgstr "انتخاب همه"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "نماي چاپ"
@@ -4021,11 +4023,11 @@ msgstr "اطلاعات نسخه"
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4091,8 +4093,8 @@ msgstr "كليد اصلي حذف گرديد."
msgid "Index %s has been dropped."
msgstr "فهرست %s حذف گرديد."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4108,7 +4110,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "سرور"
@@ -4120,16 +4122,16 @@ msgid "View"
msgstr "نمایه"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4141,10 +4143,10 @@ msgid "Structure"
msgstr "ساختار"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4152,19 +4154,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "جستجو"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4173,7 +4175,7 @@ msgid "Insert"
msgstr "درج"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4182,21 +4184,21 @@ msgid "Privileges"
msgstr "امتيازات"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "عمليات"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4213,16 +4215,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "پرس و جو"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4230,18 +4232,18 @@ msgstr ""
msgid "Events"
msgstr "رویدادها"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "طرّاح"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns"
msgstr "اضافه يا حذف ستونها"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4249,42 +4251,42 @@ msgstr "اضافه يا حذف ستونها"
msgid "Databases"
msgstr "پايگاههاي داده"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "كاربر"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
#, fuzzy
msgid "Binary log"
msgstr "دودويي"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "تکرار"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
#, fuzzy
msgid "Variables"
msgstr "متغییر"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "موتور"
@@ -4309,7 +4311,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4961,12 +4963,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "حداکثر: %s %s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4977,28 +4979,28 @@ msgstr "حداکثر: %s %s"
msgid "MySQL said: "
msgstr "پيغام MySQL : "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "شرح دادن SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "رد شدن از توضیحات SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "بدون كد PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "ساخت كد PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Print view"
msgctxt "Inline edit query"
@@ -5006,97 +5008,91 @@ msgid "Edit inline"
msgstr "نماي چاپ"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "يكشنبه"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y ساعت %I:%M %p"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s روز ، %s ساعت ، %s دقیقه و %s ثانیه"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "پارامتر یافت نشد:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "پرش به پایگاه داده \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"قابلیت %s به خاطر یک باگ شناخته شده تحت تاثیر قرار گرفته ایست، برای اطلاعات "
"بیشتر به %s مراجعه کنید"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "برای انتخاب کلیک کنبد"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "رایانه خود را مشاهده نمایید:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "انتخاب از مسیر آپلود در سرور %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "پوشهاي را كه براي انتقال فايل انتخاب كردهايد قابل دسترسي نيست."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no files to upload!"
msgstr "فایلی برای آپلود موجود نیست"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "خالي"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "اجرا"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "چاپ"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "ایجاد"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "آخرین به روز رسانی"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "آخرین بازدید"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "شنبه"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5121,13 +5117,13 @@ msgstr "این مقدار را استفاده کنید"
msgid "Rows"
msgstr "سطرها"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "داده"
@@ -5574,7 +5570,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6281,10 +6277,10 @@ msgstr ""
msgid "Customize default options."
msgstr "سفارشی کردن فیلدهای ورودی متن"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "دادههاي CSV"
@@ -6784,7 +6780,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6984,655 +6980,663 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "نوبت خنثی"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
msgid "Table navigation bar"
msgstr "توضيحات جدول"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
#, fuzzy
#| msgid "Allow to display all the rows"
msgid "How to display the menu tabs"
msgstr "اجازه دهید همه ردیف ها نمایش داده شوند"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, 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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "به یاد ماندن نوع جدول"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "يك كليد اصلي در %s اضافه شد"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "تکرار عنوان ها"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relations"
msgid "Relational display"
msgstr "رابطه ها"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Databases display options"
msgid "For display Options"
msgstr "گزینه های نمایش پایگاه داده"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
#, fuzzy
#| msgid "Save all edited cells at once"
msgid "Grid editing: save all edited cells at once"
msgstr "ذخیره سریع تمام سلول های ویرایش شده"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "ذخیره ی پوشه"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "در صورت استفاده نکردن خالی بگذارید"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank for defaults."
msgstr "در صورت استفاده نکردن خالی بگذارید"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication"
msgid "Authentication method to use."
msgstr "ورود"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "ورود به MySQL server ناموفق بود"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "کنترل هاست"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Control host"
msgid "Control port"
msgstr "کنترل هاست"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "مخفی کردن پایگاه داده ها"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "جدول تاریخ دستورات اس کیو ال"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "نام میزبان سرور"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "خروج URL"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "اضافه يا حذف ستونها"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "سعی کردن برای اتصال بدون رمز عبور"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "اتصال بدون رمز عبور"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "نام پايگاه داده"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "پورت سرور"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "جدول هایی که به تازگی استفاده شده"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
msgid "Favorites table"
msgstr "متغییر"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "ارتباط جدول"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "نمایش جدول ستون ها"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "جملاتی که باید ردگیری شوند"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "به صورت خودکار نسخه ایجاد شود"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "بكارگيري جدولها"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7640,208 +7644,208 @@ msgstr ""
"توضیحات کاربر پسند از این سرور . این فیلد را خالی بگذارید تا نام میزبان به "
"جای آن قرار بگیرد ."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "اجازه دهید همه ردیف ها نمایش داده شوند"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "توضيحات جدول"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "نمايش اطلاعات PHP"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "نمايش جدولها"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Show grid"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
+msgstr ""
+
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
+msgstr ""
+
+#: libraries/config/messages.inc.php:771
+msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "پرس و جوي SQL"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "آمار سطرها"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "اضافه يا حذف ستونها"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "پيشفرض"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7849,52 +7853,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7902,34 +7906,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "نام كاربر"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "اسم رمز"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -7941,53 +7945,53 @@ msgstr ""
"فعال کردن فشرده سازی [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] برای "
"عملیات خروجی و ورودی"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "پورت سرور"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Failed to read configuration file"
msgid "Enable Zero Configuration mode"
@@ -8015,46 +8019,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Spreadsheet"
msgstr "مستندات باز"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "آمار پايگاههاي داده"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV براي دادههاي MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Text"
@@ -13755,19 +13759,31 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
-#, fuzzy
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
#| 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"این جدول هیچ مقدار کلیدی ندارد. امکانات ویرایش جدولی، چک باکس ها ، ویرایش ، "
"کپی و حذف ممکن است کار نکنند."
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"این جدول هیچ مقدار کلیدی ندارد. امکانات ویرایش جدولی، چک باکس ها ، ویرایش ، "
+"کپی و حذف ممکن است کار نکنند."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -15122,6 +15138,12 @@ msgstr "توضيحات"
msgid "Drag to reorder"
msgstr "برای دوباره مرتب کردن drag کنید"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "شنبه"
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/fi.po b/po/fi.po
index 0ee4fb3f5a..9cf16d5ee7 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-01-18 15:39+0200\n"
"Last-Translator: Juha \n"
"Language-Team: Finnish %s:"
msgstr "Suorita SQL-kysely tietokannassa %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Suorita kysely"
@@ -3462,7 +3463,7 @@ msgstr "Päivitä kirjanmerkki"
msgid "Delete bookmark"
msgstr "Poista kirjanmerkki"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3470,19 +3471,19 @@ msgstr ""
"Palvelin ei vastaa (tai paikallisen palvelimen pistokke ei ole määritelty "
"oikein)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Palvelin ei vastaa."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Tarkista käyttöoikeudet hakemisto sisältää tietokannan."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Lisätiedot…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Yhteyden muodostus asetuksissa määriteltyyn superuser-käyttäjään epäonnistui."
@@ -3523,9 +3524,9 @@ msgstr[0] "%1$s hakutulosta taulussa %2$s"
msgstr[1] "%1$s hakutulosta taulussa %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3579,28 +3580,28 @@ msgstr "Suodata rivejä"
msgid "Search this table"
msgstr "Hae tästä taulusta"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Aloitus"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Edellinen sivu"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Seuraava sivu"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Viimeinen sivu"
@@ -3609,8 +3610,9 @@ msgstr "Viimeinen sivu"
msgid "All"
msgstr "Kaikki"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Rivien määrä:"
@@ -3708,16 +3710,16 @@ msgid "Query took %01.4f seconds."
msgstr "Kysely kesti %01.4f sekuntia."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Valitut:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3725,7 +3727,7 @@ msgstr "Valitut:"
msgid "Check All"
msgstr "Valitse kaikki"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Tulostusversio"
@@ -3823,11 +3825,11 @@ msgstr "Git-tiedot puuttuvat!"
msgid "Open new phpMyAdmin window"
msgstr "Avaa uusi phpMyAdmin-ikkuna"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Palkin klikkaus vierittää sivun ylös"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "JavaScriptin on oltava päällä tämän jälkeen!"
@@ -3891,8 +3893,8 @@ msgstr "Perusavain on poistettu."
msgid "Index %s has been dropped."
msgstr "Indeksi %s on poistettu."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3910,7 +3912,7 @@ msgstr ""
"poistaa."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Palvelin"
@@ -3922,16 +3924,16 @@ msgid "View"
msgstr "Näkymä"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3943,10 +3945,10 @@ msgid "Structure"
msgstr "Rakenne"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3954,19 +3956,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Etsi"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3975,7 +3977,7 @@ msgid "Insert"
msgstr "Lisää rivi"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3984,21 +3986,21 @@ msgid "Privileges"
msgstr "Käyttöoikeudet"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Toiminnot"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Seuranta"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4015,16 +4017,16 @@ msgstr "Herättimet"
msgid "Database seems to be empty!"
msgstr "Tietokanta on tyhjä!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Haku"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rutiinit"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4032,16 +4034,16 @@ msgstr "Rutiinit"
msgid "Events"
msgstr "Tapahtumat"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Suunnittelija"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Keskisarakkeet"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4049,38 +4051,38 @@ msgstr "Keskisarakkeet"
msgid "Databases"
msgstr "Tietokannat"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Käyttäjät"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Binääriloki"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Kahdennus"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Muuttujat"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Merkistöt"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Liitännäiset"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Moottorit"
@@ -4105,7 +4107,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d rivi lisätty."
msgstr[1] "%1$d riviä lisätty."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4777,12 +4779,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Luettelointi, valittu määritetyt arvot luettelosta"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Enimmäiskoko: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4793,28 +4795,28 @@ msgstr "Enimmäiskoko: %s%s"
msgid "MySQL said: "
msgstr "MySQL ilmoittaa: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Selitä SQL-kysely"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Älä selitä SQL-kyselyä"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Ilman PHP-koodia"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Luo PHP-koodi"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
@@ -4822,93 +4824,87 @@ msgid "Edit inline"
msgstr "Muokkaa indeksiä"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Su"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d.%m.%Y klo %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s päivää, %s tuntia, %s minuuttia ja %s sekuntia"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Puuttuva parametri:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Siirry tietokantaan \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Vaihda painamalla"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Selaa tietokonettasi:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Valitse verkkopalvelimen lähetyskansiosta %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Palvelimelle ladattavia tiedostoja ei ole!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Tyhjennä"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Suorita"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Tulosta"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Luotu"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Viimeksi päivitetty"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Viimeksi tarkistettu"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start row"
-msgid "Start row:"
-msgstr "Aloitusrivi"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Haku:"
@@ -4931,13 +4927,13 @@ msgstr "Käytä tätä arvoa"
msgid "Rows"
msgstr "Kpl rivejä"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5357,7 +5353,7 @@ msgid "Set value: %s"
msgstr "Aseta arvo: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Palauta oletusarvo"
@@ -6211,10 +6207,10 @@ msgstr "Mukauta selaustilaa"
msgid "Customize default options."
msgstr "Mukauta oletusvalintoja"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6782,7 +6778,7 @@ 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:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Käyttäjät eivät voi määrittää suurempaa arvoa"
@@ -7037,36 +7033,44 @@ msgstr "Nämä ovat Muokkaa, kopioi ja Poista linkit"
msgid "Where to show the table row links"
msgstr "Tässä näytetään taulukon rivien linkit"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Luonnollinenjärjestys"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:531
#, 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:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Taulukon navigointipalkki"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
#, 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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip-ulostulon puskurointi"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid ""
#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
@@ -7078,32 +7082,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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Oletuslajittelujärjestys"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, 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:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Jatkuvat yhteydet"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7115,11 +7119,11 @@ msgstr ""
"Poistaa oletus varoituksen, joka näytetään jos mcrypt puuttuu eväste "
"todennuksesta"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7131,29 +7135,29 @@ msgstr ""
"Poistaa oletus varoituksen, joka näytetään jos mcrypt puuttuu eväste "
"todennuksesta"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Miten menun välilehdet näytetään"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
#, 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:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Suojaa binäärisarakkeet"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7163,136 +7167,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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Pysyvä kyselyhistoria"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
#, 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:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Kyselyhistorian pituus"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
#, 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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Merkistön uudelleenkoodaus"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Muista taulun järjestys"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Oletuslajittelujärjestys"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Toista otsikoita"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Relatiivinen näyttösarake"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "Palvelinten näyttöasetukset"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
#, 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:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Tallennushakemisto"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
#, 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:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Palvelintodennuksen järjestys"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
#, 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:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Palvelintodennuksen säännöt"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Salli kirjautumiset ilman salasanaa"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Salli pääkäyttäjän kirjautuminen"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Tämän istunnon arvo"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid ""
#| "The path for the config file for [a@http://swekey.com]SweKey hardware "
@@ -7306,21 +7310,21 @@ msgstr ""
"[a@http://swekey.com]SweKey-laitteistotodennuksen[/a] asetustiedoston polku "
"(ei dokumenttijuuressa; suositeltu: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey-asetustiedosto"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "Käytettävä todennustyyppi"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Todennustyyppi"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7328,11 +7332,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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Kirjanmerkkitaulu"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
@@ -7344,36 +7348,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:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Saraketietojen taulu"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Pakkaa MySQL-palvelimen yhteys"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Pakkaa yhteys"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
#, 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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Yhteystyyppi"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Hallintakäyttäjän salasana"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7387,38 +7391,38 @@ msgstr ""
"lisätietoja saatavilla [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wikissä[/a]"
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Hallintakäyttäjä"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Hallintapalvelin"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Hallinta portti"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
#, 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:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7427,15 +7431,15 @@ msgstr ""
"virheenjäljittimestä[/a] ja [a@http://bugs.mysql.com/19588]MySQL:n "
"ohjelmavirheistä[/a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Poista INFORMATION_SCHEMA käytöstä"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Piilota tietokannat"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7447,41 +7451,41 @@ msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea, oletusarvo: "
"[kbd]pma__history[/kbd]"
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL-kyselyhistorian taulu"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
msgstr "MySQL-palvelimen verkkonimi"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Palvelimen verkkonimi"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "Uloskirjautumisen verkko-osoite"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Tallennettavien taulumääritysten maksimi määrä"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "Näytä alipalvelimen tilan taulu"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7493,13 +7497,13 @@ msgstr ""
"Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: "
"[kbd]pma__pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Central columns"
msgid "Central columns table"
msgstr "Keskisarakkeet"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7511,17 +7515,17 @@ msgstr ""
"Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: "
"[kbd]pma__table_coords[/kbd]"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "Yritä yhdistää ilman salasanaa"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Yhdistä ilman salasanaa"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7531,21 +7535,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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Näytä vain luetteloidut tietokannat"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
#, 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:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Config-todennuksen salasana"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7556,11 +7560,11 @@ msgstr ""
"Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: "
"[kbd]pma__pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF-kaavio: sivujen taulu"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
@@ -7575,23 +7579,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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "tietokannan nimi"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
#, 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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Palvelinportti"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7603,11 +7607,11 @@ msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea, oletusarvo: "
"[kbd]pma__recent[/kbd]"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Viimeisimmäksi käytetty taulu"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7619,13 +7623,13 @@ msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea, oletusarvo: "
"[kbd]pma__recent[/kbd]"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "Suosikkitaulut"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -7637,11 +7641,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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Relaatiotaulu"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -7653,15 +7657,15 @@ msgstr ""
"Katso [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]todennustyyppien[/"
"a] esimerkit"
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Signon-istunnon nimi"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "Signon-kirjautumisen verkko-osoite"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
#, 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."
@@ -7669,21 +7673,21 @@ msgstr ""
"Palvelinpistoke, jota MySQL-palvelin kuuntelee; käytä oletusarvoa jättämällä "
"tyhjäksi"
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Palvelinpistoke"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Käytä SSL-yhteyttä"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7695,13 +7699,13 @@ msgstr ""
"Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: "
"[kbd]pma__table_coords[/kbd]"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "PDF-kaavio: taulun koordinaatit"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
#, fuzzy
#| msgid ""
#| "Table to describe the display columns, leave blank for no support; "
@@ -7713,11 +7717,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:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Näyttökenttien taulu"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" tables' UI preferences across sessions, "
@@ -7729,49 +7733,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:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Käyttöliittymän ominaisuuksien taulu"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Jäljitettävä lauseke"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
@@ -7783,21 +7787,21 @@ msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kysely seuranta tukea, oletusarvo: "
"[kbd]pma__history[/kbd]"
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL-kyselyhistorian taulu"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Automaattisesti luodut versiot"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7809,33 +7813,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:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Käyttäjätaulukko"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Käyttäjäryhmät taulukko"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
#, fuzzy
#| msgid ""
#| "Leave blank to disable the feature to hide and show navigation items, "
@@ -7847,15 +7851,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:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Config-todennuksen käyttäjä"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7863,21 +7867,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:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Tämän palvelimen yksityiskohtainen nimi"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
#, 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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Salli kaikkien rivien näyttäminen"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
#, fuzzy
#| msgid ""
#| "Please note that enabling this has no effect with [kbd]config[/kbd] "
@@ -7893,81 +7897,81 @@ msgstr ""
"todennusta käytettäessä, koska salasana lukee suoraan asetustiedostossa; "
"tämä ei estä saman komennon suorittamista suoraan."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Näytä salasananvaihtolomake"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Näytä tietokannanluontilomake"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Taulun kommentit"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Näytä luonnin aikaleima"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Näytä viimeisin tarkastus aikaleima"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Näytä kenttätyypit"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
#, 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:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Näytä funktiokentät"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
#, 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:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Näytä vihje"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -7979,15 +7983,15 @@ msgstr ""
"Näyät linkki [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]-"
"käskyn tulosteeseen"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Näytä phpinfo()-linkki"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Näytä MySQL-palvelimen tarkat tiedot"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -7995,30 +7999,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:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Näytä SQL-kyselyt"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Säilytä SQL-kyselylaatikko"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
#, 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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Näytä tilastot"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
#, fuzzy
#| msgid ""
#| "Mark used tables and make it possible to show databases with locked tables"
@@ -8028,11 +8032,11 @@ msgstr ""
"Merkitse käytetyt taulut ja mahdollista lukittuja tauluja sisältävien "
"tietokantojen näyttäminen"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Ohita lukitut taulut"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -8044,11 +8048,11 @@ msgstr ""
"Poistaa oletus varoituksen, joka näytetään jos mcrypt puuttuu eväste "
"todennuksesta"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -8061,53 +8065,53 @@ msgstr ""
"Poistaa oletus varoituksen, joka näytetään jos mcrypt puuttuu eväste "
"todennuksesta"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Kirjautumisevästeen kelpoisuus"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Tekstikenttä kentät"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr "Tekstikenttä rivit"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Oletusotsikko"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
#, fuzzy
#| msgid ""
#| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following "
@@ -8125,58 +8129,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:798
+#: libraries/config/messages.inc.php:800
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:799
+#: libraries/config/messages.inc.php:801
#, 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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Lähetyshakemisto"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
#, 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:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Käytä tietokantahakua"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Tarkista uusin versio"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8184,34 +8188,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "Käyttäjänimi"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Salasana"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8223,54 +8227,54 @@ msgstr ""
"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a]-pakkausta"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "Palvelinportti"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL-kyselyt"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8299,44 +8303,44 @@ msgstr "HTTP tunnistautuminen"
msgid "Signon authentication"
msgstr "Sisäänkirjatumistunnitautuminen"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV käyttäen LOAD DATA -kyselyä"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument laskentataulukko"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Muokattu"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Tietokannan tulostusvalinnat"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "MS Excelin CSV-muoto"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "OpenDocument teksti"
@@ -14457,20 +14461,33 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Näytetään PHP-koodina"
-#: libraries/sql.lib.php:1765
-#, fuzzy
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
#| 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Tällä taululla ei ole yksilöllistä saraketta. Ruudukkomuokkaukseen, "
"valintaneliöihin, Muokkaa-, Kopioi- ja Poista-linkkeihin liittyvät "
"ominaisuudet eivät ehkä ole toiminnassa tallennuksen jälkeen."
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Tällä taululla ei ole yksilöllistä saraketta. Ruudukkomuokkaukseen, "
+"valintaneliöihin, Muokkaa-, Kopioi- ja Poista-linkkeihin liittyvät "
+"ominaisuudet eivät ehkä ole toiminnassa tallennuksen jälkeen."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Taulun \"%s\" indeksien kanssa on ongelmia"
@@ -15904,6 +15921,12 @@ msgstr "Kommentti:"
msgid "Drag to reorder"
msgstr "Muuta järjestystä vetämällä."
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start row"
+msgid "Start row:"
+msgstr "Aloitusrivi"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Valitse sarakkeet (vähintään yksi):"
diff --git a/po/fr.po b/po/fr.po
index b9ab48b184..6af12fc90f 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-06-20 14:35+0200\n"
"Last-Translator: Marc Delisle \n"
-"Language-Team: French "
-"\n"
+"Language-Team: French \n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -302,7 +302,7 @@ msgid "Tracked tables"
msgstr "Tables faisant l'objet d'un suivi"
#: db_tracking.php:125 db_tracking.php:287 libraries/Menu.class.php:247
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:798
#: 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
@@ -328,7 +328,7 @@ msgid "Updated"
msgstr "Mis à jour"
#: db_tracking.php:129 js/messages.php:237 libraries/Menu.class.php:551
-#: libraries/Util.class.php:4386 libraries/config.values.php:104
+#: libraries/Util.class.php:4391 libraries/config.values.php:104
#: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101
#: libraries/server_status_processes.lib.php:94 libraries/tracking.lib.php:278
msgid "Status"
@@ -517,8 +517,8 @@ msgstr "Ajouter géométrie"
#: gis_data_editor.php:407 js/messages.php:286
#: libraries/DbSearch.class.php:467 libraries/DisplayResults.class.php:1807
-#: libraries/Util.class.php:4885 libraries/browse_foreigners.lib.php:142
-#: libraries/core.lib.php:610 libraries/display_change_password.lib.php:109
+#: 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_import.lib.php:392 libraries/index.lib.php:44
@@ -547,8 +547,9 @@ msgstr "Ajouter géométrie"
#: libraries/tracking.lib.php:532 libraries/tracking.lib.php:652
#: prefs_manage.php:277 prefs_manage.php:355
#: templates/columns_definitions/column_definitions_form.phtml:59
-#: templates/index_form.phtml:238 templates/table/selection_form.phtml:75
-#: view_create.php:276 view_operations.php:106
+#: templates/index_form.phtml:238 templates/startAndNumberOfRowsPanel.phtml:14
+#: templates/table/selection_form.phtml:75 view_create.php:276
+#: view_operations.php:106
msgid "Go"
msgstr "Exécuter"
@@ -672,7 +673,7 @@ msgstr ""
msgid "Could not load the progress of the import."
msgstr "Impossible de charger l'état d'avancement de l'importation."
-#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:735
+#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:738
#: libraries/export.lib.php:464
#: libraries/plugins/schema/Export_Relation_Schema.class.php:302
#: user_password.php:208
@@ -769,7 +770,7 @@ msgstr "Afficher les informations relatives à PHP"
msgid "Version information:"
msgstr "Version : "
-#: index.php:392 libraries/Util.class.php:429 libraries/Util.class.php:490
+#: 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/navigation/NavigationHeader.class.php:197
@@ -905,7 +906,7 @@ msgstr ""
"Ce serveur utilise Suhosin. Veuillez vous référer à la %sdocumentation%s "
"pour en connaître les conséquences possibles."
-#: js/messages.php:38 libraries/import.lib.php:125 sql.php:151
+#: js/messages.php:38 libraries/import.lib.php:125 sql.php:161
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "La commande «DROP DATABASE» est désactivée."
@@ -1132,7 +1133,7 @@ msgstr "Simuler la requête"
msgid "Matched rows:"
msgstr "Lignes correspondantes :"
-#: js/messages.php:114 libraries/Util.class.php:638
+#: js/messages.php:114 libraries/Util.class.php:641
msgid "SQL query:"
msgstr "Requête SQL : "
@@ -1175,12 +1176,12 @@ msgid "Other"
msgstr "Autres"
#. l10n: Thousands separator
-#: js/messages.php:131 libraries/Util.class.php:1460
+#: js/messages.php:131 libraries/Util.class.php:1463
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: js/messages.php:133 libraries/Util.class.php:1462
+#: js/messages.php:133 libraries/Util.class.php:1465
msgid "."
msgstr ","
@@ -1286,40 +1287,40 @@ msgid "Processes"
msgstr "Processus"
#. l10n: shortcuts for Byte
-#: js/messages.php:167 libraries/Util.class.php:1404
+#: js/messages.php:167 libraries/Util.class.php:1407
msgid "B"
msgstr "o"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:168 libraries/Util.class.php:1406
+#: js/messages.php:168 libraries/Util.class.php:1409
#: libraries/server_status_monitor.lib.php:217
msgid "KiB"
msgstr "Kio"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:169 libraries/Util.class.php:1408
+#: js/messages.php:169 libraries/Util.class.php:1411
#: libraries/display_export.lib.php:702
#: libraries/server_status_monitor.lib.php:218
msgid "MiB"
msgstr "Mio"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:170 libraries/Util.class.php:1410
+#: js/messages.php:170 libraries/Util.class.php:1413
msgid "GiB"
msgstr "Gio"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:171 libraries/Util.class.php:1412
+#: js/messages.php:171 libraries/Util.class.php:1415
msgid "TiB"
msgstr "Tio"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:172 libraries/Util.class.php:1414
+#: js/messages.php:172 libraries/Util.class.php:1417
msgid "PiB"
msgstr "Pio"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:173 libraries/Util.class.php:1416
+#: js/messages.php:173 libraries/Util.class.php:1419
msgid "EiB"
msgstr "Eio"
@@ -1338,7 +1339,7 @@ msgid "Traffic"
msgstr "Trafic"
#: js/messages.php:179 libraries/Menu.class.php:585
-#: libraries/Util.class.php:4390 libraries/server_status_monitor.lib.php:257
+#: libraries/Util.class.php:4395 libraries/server_status_monitor.lib.php:257
msgid "Settings"
msgstr "Paramètres"
@@ -1650,8 +1651,8 @@ msgstr ""
#: js/messages.php:264 libraries/Menu.class.php:350
#: libraries/Menu.class.php:453 libraries/Menu.class.php:581
-#: libraries/Util.class.php:4389 libraries/Util.class.php:4404
-#: libraries/Util.class.php:4421 libraries/config/messages.inc.php:236
+#: libraries/Util.class.php:4394 libraries/Util.class.php:4409
+#: libraries/Util.class.php:4426 libraries/config/messages.inc.php:236
#: libraries/display_import.lib.php:105
#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:238
#: setup/frames/menu.inc.php:26
@@ -1721,7 +1722,7 @@ msgstr "Formatage SQL..."
msgid "Cancel"
msgstr "Annuler"
-#: js/messages.php:290 libraries/Header.class.php:456
+#: js/messages.php:290 libraries/Header.class.php:455
msgid "Page-related settings"
msgstr "Paramètres liés à la page"
@@ -1798,7 +1799,7 @@ msgstr "Copie de la base de données"
msgid "Changing Charset"
msgstr "Changement du jeu de caractères"
-#: js/messages.php:314 libraries/Util.class.php:3234
+#: js/messages.php:314 libraries/Util.class.php:3237
msgid "Enable foreign key checks"
msgstr "Activer la vérification des clés étrangères"
@@ -1833,9 +1834,9 @@ msgstr "La définition d'une fonction doit comporter un énoncé RETURN !"
#: js/messages.php:328 libraries/DisplayResults.class.php:4857
#: libraries/DisplayResults.class.php:5115 libraries/Menu.class.php:342
#: libraries/Menu.class.php:444 libraries/Menu.class.php:577
-#: libraries/Util.class.php:3675 libraries/Util.class.php:3676
-#: libraries/Util.class.php:4388 libraries/Util.class.php:4403
-#: libraries/Util.class.php:4420 libraries/config/messages.inc.php:230
+#: libraries/Util.class.php:3680 libraries/Util.class.php:3681
+#: libraries/Util.class.php:4393 libraries/Util.class.php:4408
+#: libraries/Util.class.php:4425 libraries/config/messages.inc.php:230
#: libraries/display_export.lib.php:167 libraries/rte/rte_list.lib.php:146
#: libraries/server_privileges.lib.php:2085
#: libraries/server_privileges.lib.php:2164
@@ -1885,11 +1886,11 @@ msgstr "Montrer zone SQL"
#: js/messages.php:343 libraries/Console.class.php:88
#: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3450
#: libraries/DisplayResults.class.php:4839 libraries/Index.class.php:723
-#: libraries/Util.class.php:664 libraries/Util.class.php:1218
-#: libraries/Util.class.php:3673 libraries/Util.class.php:3674
+#: libraries/Util.class.php:667 libraries/Util.class.php:1221
+#: 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:775
+#: libraries/config/messages.inc.php:777
#: libraries/server_user_groups.lib.php:119
#: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179
msgid "Edit"
@@ -2690,63 +2691,63 @@ msgid "December"
msgstr "Décembre"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1620
+#: js/messages.php:655 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Janvier"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1622
+#: js/messages.php:657 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Février"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1624
+#: js/messages.php:659 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mars"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1626
+#: js/messages.php:661 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Avril"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1628
+#: js/messages.php:663 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:1630
+#: js/messages.php:665 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Juin"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1632
+#: js/messages.php:667 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Juillet"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1634
+#: js/messages.php:669 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Août"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1636
+#: js/messages.php:671 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Septembre"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1638
+#: js/messages.php:673 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Octobre"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1640
+#: js/messages.php:675 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Novembre"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1642
+#: js/messages.php:677 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Décembre"
@@ -2784,32 +2785,32 @@ msgid "Sun"
msgstr "Dim"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1647
+#: js/messages.php:698 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1649
+#: js/messages.php:700 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1651
+#: js/messages.php:702 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1653
+#: js/messages.php:704 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Jeu"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1655
+#: js/messages.php:706 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1657
+#: js/messages.php:708 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sam"
@@ -2951,7 +2952,7 @@ msgid "Please enter a valid HEX input"
msgstr "Veuillez saisir une valeur hexadécimale valide"
#: js/messages.php:785 libraries/Message.class.php:199
-#: libraries/Util.class.php:624 libraries/core.lib.php:245
+#: 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
msgid "Error"
@@ -3055,7 +3056,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:790
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3104,7 +3105,7 @@ msgstr "Durant la session en cours"
msgid "Explain"
msgstr "Expliquer"
-#: libraries/Console.class.php:216 libraries/Util.class.php:1291
+#: libraries/Console.class.php:216 libraries/Util.class.php:1294
#: libraries/sql.lib.php:278
msgid "Profiling"
msgstr "Profilage"
@@ -3185,17 +3186,14 @@ msgid "Press Enter to execute query"
msgstr "Faites Entrée pour exécuter la requête"
#: libraries/Console.class.php:277
-#| msgid "Ascending"
msgid "ascending"
msgstr "croissant"
#: libraries/Console.class.php:280
-#| msgid "Descending"
msgid "descending"
msgstr "décroissant"
#: libraries/Console.class.php:283
-#| msgid "Order"
msgid "Order:"
msgstr "Ordre :"
@@ -3204,27 +3202,22 @@ msgid "Count"
msgstr "Nombre"
#: libraries/Console.class.php:292
-#| msgid "Execute every"
msgid "Execution order"
msgstr "Ordre d'exécution"
#: libraries/Console.class.php:295
-#| msgid "Time taken:"
msgid "Time taken"
msgstr "Temps nécessaire"
#: libraries/Console.class.php:298
-#| msgid "Order"
msgid "Order by:"
msgstr "Trier par :"
#: libraries/Console.class.php:301
-#| msgid "SQL queries"
msgid "Group queries"
msgstr "Regrouper les requêtes"
#: libraries/Console.class.php:304
-#| msgid "SQL queries"
msgid "Ungroup queries"
msgstr "Dissocier les groupes"
@@ -3237,12 +3230,11 @@ msgid "Hide trace"
msgstr "Cacher l'itinéraire d'appel"
#: libraries/Console.class.php:317
-#| msgid "Count"
msgid "Count:"
msgstr "Nombre :"
-#: libraries/Console.class.php:332 libraries/Util.class.php:1260
-#: libraries/config/messages.inc.php:777
+#: libraries/Console.class.php:332 libraries/Util.class.php:1263
+#: libraries/config/messages.inc.php:779
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3391,7 +3383,7 @@ msgstr "Supprimer : "
msgid "SQL query on database %s:"
msgstr "Requête SQL sur la base %s : "
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Exécuter la requête"
@@ -3415,7 +3407,7 @@ msgstr "Mettre à jour le signet"
msgid "Delete bookmark"
msgstr "Effacer le signet"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3423,20 +3415,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:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Le serveur ne répond pas."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
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:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Détails…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"La connexion au controluser tel que défini dans votre configuration a échoué."
@@ -3477,9 +3469,9 @@ msgstr[0] "%1$s correspondance dans %2$s"
msgstr[1] "%1$s correspondances dans %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3533,28 +3525,28 @@ msgstr "Filtrer les lignes"
msgid "Search this table"
msgstr "Chercher dans cette table"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Début"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Précédent"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Suivant"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Fin"
@@ -3563,8 +3555,9 @@ msgstr "Fin"
msgid "All"
msgstr "Tout"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Nombre de lignes : "
@@ -3662,16 +3655,16 @@ msgid "Query took %01.4f seconds."
msgstr "Traitement en %01.4f secondes."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Pour la sélection : "
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3679,7 +3672,7 @@ msgstr "Pour la sélection : "
msgid "Check All"
msgstr "Tout cocher"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Version imprimable"
@@ -3779,11 +3772,11 @@ msgstr "Information Git manquante !"
msgid "Open new phpMyAdmin window"
msgstr "Ouvrir une nouvelle fenêtre phpMyAdmin"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Cliquez sur la barre pour faire défiler en haut de page"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Javascript doit être activé !"
@@ -3847,8 +3840,8 @@ msgstr "La clé primaire a été effacée."
msgid "Index %s has been dropped."
msgstr "L'index %s a été effacé."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3866,7 +3859,7 @@ msgstr ""
"supprimé."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Serveur"
@@ -3878,16 +3871,16 @@ msgid "View"
msgstr "Vue"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3899,10 +3892,10 @@ msgid "Structure"
msgstr "Structure"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3910,19 +3903,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Rechercher"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3931,7 +3924,7 @@ msgid "Insert"
msgstr "Insérer"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3940,21 +3933,21 @@ msgid "Privileges"
msgstr "Privilèges"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Opérations"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Suivi"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3971,16 +3964,16 @@ msgstr "Déclencheurs"
msgid "Database seems to be empty!"
msgstr "La base de données semble vide !"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Requête"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Procédures stockées"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3988,16 +3981,16 @@ msgstr "Procédures stockées"
msgid "Events"
msgstr "Événements"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Concepteur"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Colonnes centrales"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4005,38 +3998,38 @@ msgstr "Colonnes centrales"
msgid "Databases"
msgstr "Bases de données"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Utilisateurs"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Log binaire"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Réplication"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variables"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Jeux de caractères"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Plug-ins"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Moteurs"
@@ -4061,7 +4054,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d ligne insérée."
msgstr[1] "%1$d lignes insérées."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4745,12 +4738,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Une énumération, choisie parmi la liste de valeurs définies"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Taille maximum: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4761,119 +4754,115 @@ msgstr "Taille maximum: %s%s"
msgid "MySQL said: "
msgstr "MySQL a répondu: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Expliquer SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Ne pas expliquer SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr "Analyser les explications au %s"
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Sans source PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Créer source PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Éditer en ligne"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dim"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%A %d %B %Y à %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s jours, %s heures, %s minutes et %s secondes"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Paramètre manquant : "
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Aller à la base de données \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Cliquer pour basculer"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Parcourir : "
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
"Choisissez depuis le répertoire de téléchargement du serveur web %s : "
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Le répertoire de transfert est inaccessible."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Aucun fichier n'est disponible pour le transfert !"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Vider"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Exécuter"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Imprimer"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Création"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Dernière modification"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Dernière vérification"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Ligne de départ : "
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Rechercher : "
@@ -4896,13 +4885,13 @@ msgstr "Utiliser cette valeur"
msgid "Rows"
msgstr "Lignes"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5324,7 +5313,7 @@ msgid "Set value: %s"
msgstr "Assigner la valeur: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Ramener la valeur par défaut"
@@ -6078,10 +6067,10 @@ msgstr "Personnaliser le mode affichage."
msgid "Customize default options."
msgstr "Personnaliser les options par défaut."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6561,7 +6550,7 @@ 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:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Les utilisateurs ne peuvent choisir une plus grande valeur"
@@ -6778,34 +6767,42 @@ msgstr "Il s'agit des liens Modifier, Copier et Effacer."
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
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Ordre naturel"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Afficher seulement des icônes, seulement du texte ou les deux."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Barre de navigation"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "Sert à augmenter la vitesse des transferts HTTP."
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "Tampon de sortie GZip"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6813,19 +6810,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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Ordre de tri par défaut"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Connexions persistantes au serveur MySQL."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Connexions persistantes"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6834,11 +6831,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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Tables manquantes pour le stockage de configurations phpMyAdmin"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6846,11 +6843,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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Avertissement d'écart Serveur/bibliothèque"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6858,27 +6855,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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Avertissement de mot réservé MySQL"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Comment afficher les onglets de menu"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Comment afficher divers liens d'action"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Empêche l'édition des colonnes BLOB et BINARY."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Protéger les colonnes avec contenu binaire"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6888,109 +6885,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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Historique permanent des requêtes"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Le nombre de requêtes à conserver dans l'historique."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Taille de l'historique"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Moteur de conversion"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Mémoriser l'ordre de tri de la table"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
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:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Ordre de tri par défaut pour la clé primaire"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
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:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Répéter les en-têtes"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Édition de grille : action de déclenchement"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Affichage relationnel"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "Pour les options d'affichage"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
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:558
+#: libraries/config/messages.inc.php:560
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:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Répertoire de sauvegarde"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Laisser vide si non utilisé."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Ordre d'autorisation des serveurs"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Laisser vide pour la valeur par défaut."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Règles d'autorisation des serveurs"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Permettre les connexions sans fournir de mot de passe"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Permettre une connexion à root"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Fuseau horaire pour la session"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -6998,16 +6995,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:569
+#: libraries/config/messages.inc.php:571
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:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "Domaine de protection HTTP"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7017,19 +7014,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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "Fichier de configuration SweKey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Type d'authentification."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Type d'authentification"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7037,11 +7034,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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Table pour signets"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7049,33 +7046,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:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Table pour informations sur les colonnes"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Comprime la connexion au serveur MySQL."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Utiliser le mode compression sur la connexion"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Type de connexion"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Mot de passe de l'utilisateur de contrôle"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7083,11 +7080,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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Utilisateur de contrôle"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7095,11 +7092,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:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Serveur de contrôle"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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 +7106,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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Port de contrôle"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Masquer les bases dont le nom correspond à l'expression (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7125,15 +7122,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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Empêcher l'accès à INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Masquer les bases de données"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7141,23 +7138,23 @@ msgstr ""
"Laisser vider pour désactiver l'historique des requêtes SQL, suggestion : "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Tables pour historique des requêtes SQL"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Le nom du serveur sur lequel MySQL est en exécution."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Nom du serveur"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL pour quitter"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7165,15 +7162,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:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Nombre maximum de préférences de tables à conserver"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "Table pour les signets de recherche sauvegardés"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7181,11 +7178,11 @@ msgstr ""
"Laisser vider pour désactiver le support des recherches sauvegardées, "
"suggestion : [kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Table pour les colonnes centrales"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7193,15 +7190,15 @@ msgstr ""
"Laisser vider pour désactiver les colonnes centrales, suggestion : "
"[kbd]pma__central_columns[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Essayer de se connecter sans mot de passe."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Connexion sans mot de passe"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7211,31 +7208,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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Restreindre la liste des bases de données"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
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:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Mot de passe pour méthode config"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "Table pour décrire les schémas en PDF"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7245,22 +7242,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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nom de base de données"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Port"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7268,11 +7265,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:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Table récemment utilisée"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7280,11 +7277,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:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Table pour les tables préférées"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7292,11 +7289,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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Table relationnelle"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7304,44 +7301,44 @@ msgstr ""
"Voir [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] pour un exemple."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Nom de session pour méthode signon"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "URL pour connexion"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Interface de connexion socket"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Utiliser SSL pour la connexion au serveur MySQL."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Utiliser SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
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:693
+#: libraries/config/messages.inc.php:695
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:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7349,11 +7346,11 @@ msgstr ""
"Sert à définir les colonnes descriptives, laisser vide pour désactiver; "
"suggestion : [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Table pour colonnes descriptives"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7361,11 +7358,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:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Table de stockage des préférences d'interface de table"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7373,11 +7370,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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Ajouter DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7385,11 +7382,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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Ajouter DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7397,21 +7394,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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Ajouter DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
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:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Énoncés à suivre"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7419,11 +7416,11 @@ msgstr ""
"Laisser vide pour désactiver le suivi des changements SQL; suggestion : "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Table pour le suivi des changements SQL"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7431,11 +7428,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:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Création automatique de versions"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7443,11 +7440,11 @@ msgstr ""
"Laisser vide pour désactiver les préférences utilisateur; suggestion : "
"[kbd]pma__config[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Table de stockage des préférences utilisateur"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7457,11 +7454,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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Table des utilisateurs"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7471,11 +7468,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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Table des groupes d'utilisateurs"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7484,15 +7481,15 @@ msgstr ""
"d'afficher les éléments de navigation; suggestion : "
"[kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Table contenant les éléments de navigation cachés"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Utilisateur pour méthode config"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7500,19 +7497,19 @@ msgstr ""
"Une description conviviale de ce serveur. Laisser vide pour utiliser à la "
"place le nom du serveur."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Nom à afficher pour ce serveur"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Permettre l'affichage de toutes les lignes"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7522,57 +7519,57 @@ msgstr ""
"cependant on peut exécuter un changement de mot de passe manuellement avec "
"la commande appropriée."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Afficher le dialogue de changement de mot de passe"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Afficher le formulaire de création de base de données"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
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:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr "Montrer les commentaires de table"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
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:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Montrer la date de création"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
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:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Montrer la date de dernière mise à jour"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
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:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Montrer la date de dernière vérification"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7580,27 +7577,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:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Montrer les champs de type de données"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
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:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Montrer les fonctions"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Afficher ou non les explications."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Montrer les explications"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7608,57 +7605,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:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Afficher un lien vers phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Afficher les informations détaillées sur le serveur MySQL"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
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:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Afficher les requêtes SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
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:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Conserver la boîte de requêtes"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Afficher les statistiques"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
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:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Saute les tables verrouillées"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7666,11 +7663,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:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Avertissement Suhosin"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 "
@@ -7680,11 +7677,11 @@ msgstr ""
"paramètre PHP session.gc_maxlifetime est moindre que celle de "
"`LoginCookieValidity`."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "Durée de validité de la connexion en mode cookie"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7692,11 +7689,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:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Taille horizontale pour une zone de texte"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7704,32 +7701,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:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Taille verticale pour une zone de texte"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
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:791
+#: libraries/config/messages.inc.php:793
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:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Titre par défaut"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
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:795
+#: libraries/config/messages.inc.php:797
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:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7741,29 +7738,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:798
+#: libraries/config/messages.inc.php:800
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:799
+#: libraries/config/messages.inc.php:801
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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Répertoire de téléchargement"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
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:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Permet une recherche dans toute la base de données"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7771,26 +7768,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:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Active le menu Développeur dans les paramètres"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 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:806
+#: libraries/config/messages.inc.php:808
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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7803,11 +7800,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:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "URL du serveur mandataire"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7818,19 +7815,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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Utilisateur du serveur mandataire"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
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:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Mot de passe du serveur mandataire"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7838,35 +7835,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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
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:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Clé publique pour reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
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:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Clé privée pour reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
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:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Envoyer le rapport d'erreurs"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7874,11 +7871,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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr "La touche Entrée exécute les requêtes dans la console"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7886,7 +7883,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:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Activer le mode de Configuration automatique"
@@ -7912,44 +7909,44 @@ msgstr "Mode d'authentification « HTTP »"
msgid "Signon authentication"
msgstr "Mode d'authentification « signon »"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV via LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Tableur OpenDocument"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Rapide"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Personnalisé"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Options d'exportation des bases de données"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV pour MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Texte OpenDocument"
@@ -13749,16 +13746,33 @@ msgstr "Le signet «%s» a été utilisé comme requête par défaut."
msgid "Showing as PHP code"
msgstr "Affichage du code PHP"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"La sélection courante ne contient pas de colonne unique. Les grilles "
"d'édition, les cases à cocher ainsi que les liens Edition, Copie et "
"Supprimer ne sont pas disponibles."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"La sélection courante ne contient pas de colonne unique. Les grilles "
+"d'édition, les cases à cocher ainsi que les liens Edition, Copie et "
+"Supprimer ne sont pas disponibles."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Il y a des problèmes avec les index de la table `%s`"
@@ -15019,6 +15033,10 @@ msgstr "Commentaire : "
msgid "Drag to reorder"
msgstr "Faire glisser pour réordonner"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Ligne de départ : "
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Choisir les colonnes (au moins une) : "
diff --git a/po/fy.po b/po/fy.po
index 75c2345022..7a84eddbe6 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-04-15 22:05+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Frisian %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr ""
@@ -3264,25 +3265,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Details…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3322,9 +3323,9 @@ msgstr[0] ""
msgstr[1] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3378,28 +3379,28 @@ msgstr ""
msgid "Search this table"
msgstr ""
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Begjin"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Folgjende"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr ""
@@ -3408,8 +3409,9 @@ msgstr ""
msgid "All"
msgstr "Alle"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Oantal rigen:"
@@ -3505,16 +3507,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr ""
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3522,7 +3524,7 @@ msgstr ""
msgid "Check All"
msgstr ""
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr ""
@@ -3615,11 +3617,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3683,8 +3685,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3700,7 +3702,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -3712,16 +3714,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3733,10 +3735,10 @@ msgid "Structure"
msgstr "Struktuer"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3744,19 +3746,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Sykje"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3765,7 +3767,7 @@ msgid "Insert"
msgstr "Ynfoegje"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3774,21 +3776,21 @@ msgid "Privileges"
msgstr "Rjochten"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Hannelingen"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Trasearje"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3805,16 +3807,16 @@ msgstr "Triggers"
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Query"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Routines"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3822,16 +3824,16 @@ msgstr "Routines"
msgid "Events"
msgstr "Barrens"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Untwerper"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr ""
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3839,38 +3841,38 @@ msgstr ""
msgid "Databases"
msgstr "Databases"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Brûkers"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replikaasje"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Fariabelen"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Karaktersets"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -3895,7 +3897,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4500,12 +4502,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4516,28 +4518,28 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit routine"
msgctxt "Inline edit query"
@@ -4545,91 +4547,87 @@ msgid "Edit inline"
msgstr "Routine bewurkje"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "si"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dagen, %s oeren, %s minuten en %s sekonden"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Leegje"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr ""
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr ""
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr ""
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr ""
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Sykje:"
@@ -4652,13 +4650,13 @@ msgstr ""
msgid "Rows"
msgstr "Rigen"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5075,7 +5073,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -5743,10 +5741,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6190,7 +6188,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6385,313 +6383,321 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Natuerlike folchoarder"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational key"
msgid "Relational display"
msgstr "Relasjonele kaai"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Sessywearde"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey-konfiguraasjetriem"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Blêdwizertabel"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -6699,526 +6705,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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL-queryskiednistabel"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Serverhostnamme"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "User groups table"
msgid "Central columns table"
msgstr "Brûkersgroepentabel"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Databasenamme"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Serverpoarte"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Favorites"
msgid "Favorites table"
msgstr "Favoriten"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Relaasjetabel"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Serversocket"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Brûkerstabel"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Brûkersgroepentabel"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Tabelopmerkings"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
+msgid ""
+"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772
-msgid "Show statistics"
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+msgid "Retain query box"
msgstr ""
#: libraries/config/messages.inc.php:773
+msgid "Allow to display database and table statistics (eg. space usage)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:774
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin-warskôging"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Standerttitel"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7226,52 +7232,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7279,80 +7285,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Proxy url"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Proxy brûkersnamme"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Proxy wachtwurd"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7376,44 +7382,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-rekkenblêd"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Oanpast"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV foar MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "OpenDocument-tekst"
@@ -12707,13 +12713,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -13936,6 +13950,10 @@ msgstr "Opmerking:"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr ""
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/gl.po b/po/gl.po
index 8a4acbeeaa..3a0dd27eeb 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-10-10 23:59+0200\n"
"Last-Translator: Xosé Calvo \n"
"Language-Team: Galician %s:"
msgstr "Consulta tipo SQL na base de datos %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Enviar esta consulta"
@@ -3637,7 +3638,7 @@ msgstr "A mostrar o marcador"
msgid "Delete bookmark"
msgstr "Eliminar a relación"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3645,19 +3646,19 @@ msgstr ""
"O servidor non responde (ou o socket local do servidor non se configurou "
"correctamente)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "O servidor non responde."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
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:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Detalles…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Fallou a conexión para «controluser» tal e como está definida na "
@@ -3699,9 +3700,9 @@ msgstr[0] "%1$s coincidencia en %2$s"
msgstr[1] "%1$s coincidencias en %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3759,28 +3760,28 @@ msgstr "Filtros"
msgid "Search this table"
msgstr "Buscar na base de datos"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Inicio"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Anterior"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Seguinte"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Fin"
@@ -3789,8 +3790,9 @@ msgstr "Fin"
msgid "All"
msgstr "Todo"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Número de filas:"
@@ -3898,16 +3900,16 @@ msgid "Query took %01.4f seconds."
msgstr "a consulta levou %01.4f segundos"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Cos marcados:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3915,7 +3917,7 @@ msgstr "Cos marcados:"
msgid "Check All"
msgstr "Marcalos todos"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Visualización previa da impresión"
@@ -4024,11 +4026,11 @@ msgstr "Información sobre a versión"
msgid "Open new phpMyAdmin window"
msgstr "Abrir unha xanela nova co phpMyAdmin"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Prema a barra para desprazarse até a parte superior da páxina"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Javascript must be enabled past this point"
@@ -4094,8 +4096,8 @@ msgstr "Eliminouse a chave primaria."
msgid "Index %s has been dropped."
msgstr "Eliminouse o índice %s."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4113,7 +4115,7 @@ msgstr ""
"eliminar un deles."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Servidor"
@@ -4125,16 +4127,16 @@ msgid "View"
msgstr "Vista"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4146,10 +4148,10 @@ msgid "Structure"
msgstr "Estrutura"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4157,19 +4159,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Buscar"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4178,7 +4180,7 @@ msgid "Insert"
msgstr "Inserir"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4187,21 +4189,21 @@ msgid "Privileges"
msgstr "Privilexios"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operacións"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Seguimento"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4218,16 +4220,16 @@ msgstr "Disparadores"
msgid "Database seems to be empty!"
msgstr "Parece ser que a táboa está baleira!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Consulta"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rutinas"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4235,18 +4237,18 @@ msgstr "Rutinas"
msgid "Events"
msgstr "Acontecementos"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Deseñador"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns"
msgstr "Columnas da área de texto"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4254,38 +4256,38 @@ msgstr "Columnas da área de texto"
msgid "Databases"
msgstr "Bases de datos"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Usuarios"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Rexistro binario"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replicación"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variábeis"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Conxuntos de caracteres"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Engadidos"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Motores"
@@ -4310,7 +4312,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d fila inserida."
msgstr[1] "%1$d filas inseridas."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -5025,12 +5027,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Unha enumeración escollida da lista de valores definidos"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Tamaño máximo: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5041,28 +5043,28 @@ msgstr "Tamaño máximo: %s%s"
msgid "MySQL said: "
msgstr "Mensaxes do MySQL: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Explicar o SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Omitir a explicación de SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Sen código PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Crear código PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
@@ -5070,93 +5072,89 @@ msgid "Edit inline"
msgstr "Editar o índice"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Do"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d de %B de %Y ás %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s días, %s horas, %s minutos e %s segundos"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Parámetro que falta:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Ir á base de datos \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "A función %s vese afectada por un erro descoñecido; consulte %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Prema para conmutar"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Examinar o computador:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Escoller o directorio de subida do servidor web %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Non é posíbel acceder ao directorio que designou para os envíos."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no files to upload!"
msgstr "Non hai ficheiros para subir"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Baleirar"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Executar"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Imprimir"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Creación"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Última actualización"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Última revisión"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Fila inicial:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Buscar:"
@@ -5179,13 +5177,13 @@ msgstr "Usar este valor"
msgid "Rows"
msgstr "Filas"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5630,7 +5628,7 @@ msgid "Set value: %s"
msgstr "Pór como valor: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Restaurar o valor por omisión"
@@ -6502,10 +6500,10 @@ msgstr "Personalizar o modo de navegación"
msgid "Customize default options."
msgstr "Personalizar as opcións por omisión"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -7077,7 +7075,7 @@ 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:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Os usuarios non poden estabelecer un valor máis alto"
@@ -7333,7 +7331,15 @@ msgstr "Estas son as ligazóns Editar, Copiar e Eliminar"
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
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
#, fuzzy
#| msgid "Use natural order for sorting table and database names"
msgid "Use natural order for sorting table and database names."
@@ -7341,22 +7347,22 @@ msgstr ""
"Empregar a ordenación natural para ordenar os nomes das táboas e as bases de "
"datos"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Ordenación natural"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:531
#, 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:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Barra de navegación das táboas"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
#, fuzzy
#| msgid "use GZip output buffering for increased speed in HTTP transfers"
msgid "Use GZip output buffering for increased speed in HTTP transfers."
@@ -7364,11 +7370,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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "Buffer para a saída de GZip"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid ""
#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
@@ -7380,21 +7386,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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Ordenación por omisión"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, 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:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Conexións persistentes"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7409,11 +7415,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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if a difference between the "
@@ -7425,11 +7431,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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Advertencia de diferenza entre servidor e biblioteca"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7441,29 +7447,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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Advertencia de palabra reservada do MySQL"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Como mostrar as lapelas do menú"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Como mostrar diversas ligazóns de acción"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
#, 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:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Protexer as columnas binarias"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7474,21 +7480,21 @@ msgstr ""
"rutinas JS para mostrar o historial de consultas (que se perde cando se "
"fecha a xanela)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Historial de consultas permanente"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
#, 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:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Lonxitude do historial de consultas"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
#, fuzzy
#| msgid "Select which functions will be used for character set conversion"
msgid "Select which functions will be used for character set conversion."
@@ -7496,31 +7502,31 @@ msgstr ""
"Escolla as funcións que desexe empregar para a conversión dos conxuntos de "
"caracteres"
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Motor de recodificación"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, 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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Recordar a ordenación da táboa"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Ordenación por omisión"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
#, fuzzy
#| msgid ""
#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@@ -7530,81 +7536,81 @@ msgstr ""
"Repetir os cabezallos cada X celas; [kbd]0[/kbd] desactiva esta "
"funcionalidade"
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Repetir os cabezallos"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Edición da grella: activar acción"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Mostrar columna de relación"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "Opcións de exhibición dos servidores"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
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:558
+#: libraries/config/messages.inc.php:560
#, 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:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Directorio de gardado"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
#, 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:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Orde de autenticación do servidor"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "Déixeo en branco para o predefinido"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Regras de autorización do servidor"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Permitir rexistrarse sen contrasinal"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Permitir o rexistro de root"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Valor da sesión"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
#, 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."
@@ -7612,11 +7618,11 @@ msgstr ""
"Nome de HTTP Basic Auth Realm que mostrar cando se faga a autenticación "
"mediante HTTP"
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "Dominio HTTP (Realm)"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid ""
#| "The path for the config file for [a@http://swekey.com]SweKey hardware "
@@ -7631,21 +7637,21 @@ msgstr ""
"hardware SweKey[/a] (non se localiza na raíz dos documentos; suxírese: /etc/"
"swekey.conf)"
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "Ficheiro de configuración SweKey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, 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:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Tipo de autenticación"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7653,11 +7659,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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Táboa de marcadores"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
@@ -7669,36 +7675,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:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Táboa de información das columnas"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, 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:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Comprimir a conexión"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
#, 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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Tipo de conexión"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Contrasinal do usuario de control"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7712,11 +7718,11 @@ msgstr ""
"información dispoñíbel no [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Usuario de control"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7728,11 +7734,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:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Servidor de control"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid ""
#| "An alternate port to connect to the host that holds the configuration "
@@ -7747,17 +7753,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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Porto de control"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
#, 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:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7766,15 +7772,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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Desactivar o uso de INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Agochar as bases de datos"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7786,25 +7792,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:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Táboa do historial de consultas SQL"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
#, 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:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Nome do servidor"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL de desconexión"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
#, fuzzy
#| msgid ""
#| "Limits number of table preferences which are stored in database, the "
@@ -7816,17 +7822,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:629
+#: libraries/config/messages.inc.php:631
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:630
+#: libraries/config/messages.inc.php:632
#, 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:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7838,13 +7844,13 @@ msgstr ""
"Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma__pdf_pages[/"
"kbd]"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "Columnas da área de texto"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7856,17 +7862,17 @@ msgstr ""
"Déixeo en branco se non quere PDF schema; por omisión: "
"[kbd]pma__table_coords[/kbd]"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "Tentar conectarse sen contrasinal"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Conectarse sen contrasinal"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7876,21 +7882,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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Mostrar só as bases de datos listadas"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
#, 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:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Contrasinal para config auth"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7901,11 +7907,11 @@ msgstr ""
"Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma__pdf_pages[/"
"kbd]"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF schema: táboa de páxinas"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
@@ -7921,12 +7927,12 @@ msgstr ""
"completa. Déixeo en branco se non lle interesan. Por omisión: "
"[kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nome da base de datos"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
#, 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."
@@ -7934,11 +7940,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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Porto do servidor"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7950,11 +7956,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:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Táboa usada recentemente"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7966,13 +7972,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:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Variábeis"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -7984,11 +7990,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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Táboa de relacións"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -8000,15 +8006,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:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Nome de sesión de rexistro de entrada"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "URL de rexistro de entrada"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
#, 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."
@@ -8016,21 +8022,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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Socket do servidor"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Empregar a SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -8042,13 +8048,13 @@ msgstr ""
"Déixeo en branco se non quere PDF schema; por omisión: "
"[kbd]pma__table_coords[/kbd]"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
#, 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:695
+#: libraries/config/messages.inc.php:697
#, fuzzy
#| msgid ""
#| "Table to describe the display columns, leave blank for no support; "
@@ -8060,11 +8066,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:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Mostrar a táboa de columnas"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" tables' UI preferences across sessions, "
@@ -8076,11 +8082,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:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Táboa de preferencias da interface"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -8088,11 +8094,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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Engadir DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -8100,11 +8106,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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Engadir DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -8112,21 +8118,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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Engadir DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
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:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Instrucións que seguir"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
@@ -8138,11 +8144,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:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Táboa de seguimento de consultas de SQL"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -8150,11 +8156,11 @@ msgstr ""
"Se o mecanismo de seguimento crea automaticamente versións das táboas e as "
"vistas."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Crear versions automaticamente"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -8166,37 +8172,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:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Empregar a táboa de almacenamento das preferencias"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Usar as táboas"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Empregar a táboa Host"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -8208,15 +8214,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:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Usuario para config auth"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -8224,11 +8230,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:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Nome longo deste servidor"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
#, 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."
@@ -8236,11 +8242,11 @@ msgstr ""
"Se se lle desexa mostrar un botón \"mostrar todos (os rexistros)\" ao "
"usuario"
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Permitir que se mostren todas as fileiras"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
#, fuzzy
#| msgid ""
#| "Please note that enabling this has no effect with [kbd]config[/kbd] "
@@ -8257,15 +8263,15 @@ msgstr ""
"configuración; isto non limita a capacidade de executar a mesma orde "
"directamente"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Mostrar o formulario para mudar de contrasinal"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Mostrar o formulario para crear bases de datos"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables"
@@ -8274,13 +8280,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:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Comentarios da táboa"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables"
@@ -8289,11 +8295,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:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Mostrar marca temporal de creación"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last update timestamp for all tables"
@@ -8303,11 +8309,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:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Mostrar a última actualización da marca temporal"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last check timestamp for all tables"
@@ -8317,11 +8323,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:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Mostrar a última revisión da marca temporal"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
#, fuzzy
#| msgid ""
#| "Defines whether or not type fields should be initially displayed in edit/"
@@ -8333,31 +8339,31 @@ msgstr ""
"Define se os campos tipo deben ser mostrados inicialmente no modo editar/"
"inserir"
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Mostrar os tipos de campo"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
#, 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:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Mostrar os campos de función"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
#, 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:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Mostrar consellos"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -8369,15 +8375,15 @@ msgstr ""
"Mostra unha ligazón á saída de [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Mostrar a ligazón a phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Mostrar información detallada do servidor de MySQL"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -8385,11 +8391,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:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Mostrar as consultas de SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
#, fuzzy
#| msgid ""
#| "Defines whether the query box should stay on-screen after its submission"
@@ -8399,11 +8405,11 @@ msgstr ""
"Define se a caixa de consultas debe permanecer en pantalla despois da súa "
"execución"
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Reter a caixa de consultas"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
#, fuzzy
#| msgid "Allow to display database and table statistics (eg. space usage)"
msgid "Allow to display database and table statistics (eg. space usage)."
@@ -8411,11 +8417,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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Mostrar as estatísticas"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
#, fuzzy
#| msgid ""
#| "Mark used tables and make it possible to show databases with locked tables"
@@ -8425,11 +8431,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:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Ignorar as táboas bloqueadas"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -8438,11 +8444,11 @@ msgid ""
msgstr ""
"Na pantalla principal aparece unha advertencia se o Suhosin for detectado."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Aviso de Suhosin"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -8455,13 +8461,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:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Validez das cookies de rexistro"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -8474,11 +8480,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:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Columnas da área de texto"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -8491,39 +8497,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:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Fileiras da área de texto"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
#, 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:791
+#: libraries/config/messages.inc.php:793
#, 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:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Título por omisión"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
#, 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:795
+#: libraries/config/messages.inc.php:797
#, 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:797
+#: libraries/config/messages.inc.php:799
#, fuzzy
#| msgid ""
#| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following "
@@ -8541,32 +8547,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:798
+#: libraries/config/messages.inc.php:800
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:799
+#: libraries/config/messages.inc.php:801
#, 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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Directorio de envíos"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
#, 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:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Empregar buscas na base de datos"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid ""
#| "When disabled, users cannot set any of the options below, regardless of "
@@ -8578,29 +8584,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:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Activar a lapela de desenvolvemento na configuración"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Comprobar cal é a última versión"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
#, 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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
#, fuzzy
#| msgid ""
#| "The url of the proxy to be used when retrieving the information about the "
@@ -8618,11 +8624,11 @@ msgstr ""
"instalado o phpMyAdmin non ten acceso á Internet. O formato é: "
"«nome_do_servidor:número_do_porto»"
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -8633,23 +8639,23 @@ msgstr ""
"Autenticación Básica. De momento non se admite ningún outro tipo de "
"autenticación."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "Nome de usuario"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "O contrasinal para identificarse diante do proxy."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Contrasinal"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8661,61 +8667,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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
#, 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:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Chave pública do reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
#, 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:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Chave privada do reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "Porto do servidor"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "Consultas executadas"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8743,44 +8749,44 @@ msgstr "Autenticación mediante HTTP"
msgid "Signon authentication"
msgstr "Autenticación mediante Signon"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV empregando LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Folla de cálculo de OpenDocument"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Rápido"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Personalizada"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Opcións de exportación da base de datos"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV (para datos de MS Excel)"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Texto de OpenDocument"
@@ -14755,20 +14761,33 @@ msgstr "A empregar o marcador «%s» como consulta de navegación por omisión."
msgid "Showing as PHP code"
msgstr "Mostrar como código PHP"
-#: libraries/sql.lib.php:1765
-#, fuzzy
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
#| msgid ""
#| "Table %s 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"A táboa %s non contén ningunha columna única. As funcionalidades "
"relacionadas coa edición da grella, caixa de selección, editar, copiar e "
"eliminar non están dispoñíbeis."
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| msgid ""
+#| "Table %s 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"
+msgstr ""
+"A táboa %s non contén ningunha columna única. As funcionalidades "
+"relacionadas coa edición da grella, caixa de selección, editar, copiar e "
+"eliminar non están dispoñíbeis."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas cos índices da táboa «%s»"
@@ -16122,6 +16141,10 @@ msgstr "Comentario:"
msgid "Drag to reorder"
msgstr "Arrastre para reordenar"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Fila inicial:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Escolla os campos (mínimo un):"
diff --git a/po/he.po b/po/he.po
index fb89e23f2a..cdfae34391 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-10-22 15:46+0200\n"
"Last-Translator: Eyal Visoker \n"
"Language-Team: Hebrew %s:"
msgstr "שאילתת SQL על מסד הנתונים %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "שליחת שאילתה"
@@ -3685,27 +3686,27 @@ msgstr "הצגת סימנייה"
msgid "Delete bookmark"
msgstr "חיפוש"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "השרת אינו מגיב"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3747,9 +3748,9 @@ msgstr[0] "תוצאה אחת (%1$s) בטבלה %2$s"
msgstr[1] "%1$s תוצאות בטבלה %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3809,16 +3810,16 @@ msgstr "שדות"
msgid "Search this table"
msgstr "חיפוש במסד הנתונים"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "התחלה"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3826,8 +3827,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "הקודם"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3835,8 +3836,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "הבא"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3847,8 +3848,9 @@ msgstr "סיום"
msgid "All"
msgstr "הכל"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows:"
@@ -3962,16 +3964,16 @@ msgid "Query took %01.4f seconds."
msgstr "שאילתה לקחה %01.4f שניות"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "עם הנבחרים:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3979,7 +3981,7 @@ msgstr "עם הנבחרים:"
msgid "Check All"
msgstr "סימון הכול"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "תצוגת הדפסה"
@@ -4081,11 +4083,11 @@ msgstr "מידע גרסאות"
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4152,8 +4154,8 @@ msgstr "המפתח הראשי הוסר"
msgid "Index %s has been dropped."
msgstr "אינדקס %s הוסר."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4169,7 +4171,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "שרת"
@@ -4181,16 +4183,16 @@ msgid "View"
msgstr "תצוגה"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4202,10 +4204,10 @@ msgid "Structure"
msgstr "מבנה"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4213,19 +4215,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "חיפוש"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4234,7 +4236,7 @@ msgid "Insert"
msgstr "הכנסה"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4243,21 +4245,21 @@ msgid "Privileges"
msgstr "הרשאות"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "פעולות"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4274,16 +4276,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "שאילתה"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4291,18 +4293,18 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns"
msgstr "הוספת/מחיקת עמודות שדה"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4310,40 +4312,40 @@ msgstr "הוספת/מחיקת עמודות שדה"
msgid "Databases"
msgstr "מאגרי נתונים"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "משתמש"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "דו\"ח בינארי"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "שכפול"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "משתנים"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "קידודים"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "מנועים"
@@ -4370,7 +4372,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "לא נבחרו שורות"
msgstr[1] "לא נבחרו שורות"
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -5019,12 +5021,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "מירבי: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5035,28 +5037,28 @@ msgstr "מירבי: %s%s"
msgid "MySQL said: "
msgstr "MySQL אמר: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "הסברת SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "ללא קוד PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "ייצור קוד PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Add new field"
msgctxt "Inline edit query"
@@ -5064,95 +5066,89 @@ msgid "Edit inline"
msgstr "הוספת שדה חדש"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "יום ראשון"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y בזמן %I:%M %p"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s ימים, %s שעות, %s דקות ו- %s שניות"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "הוספת שדה חדש"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "קפיצה אל מאגר נתונים \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
msgid "Select from the web server upload directory %s:"
msgstr "שמירת שרת בתוך תיקיית %s"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "ריקון"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "הדפסה"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "יצירה"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "עדכון אחרון"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "נבדק לאחרונה"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "שבת"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "חיפוש:"
@@ -5175,13 +5171,13 @@ msgstr "שימוש בערך זה"
msgid "Rows"
msgstr "שורות"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "נתונים"
@@ -5629,7 +5625,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6344,10 +6340,10 @@ msgstr ""
msgid "Customize default options."
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6837,7 +6833,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -7041,890 +7037,898 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "שינוי סדר הטבלה לפי"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "כותרת טבלה"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "שינוי שם טבלה אל"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "מפתח ראשי נוסף אל %s"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
msgid "Relational display"
msgstr "תצוגת יחסים"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
msgid "For display Options"
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
#, fuzzy
msgid "Save directory"
msgstr "תיקיית בית של נתונים"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "ערך זמן חיבור (Session)"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Documentation"
msgid "Authentication method to use."
msgstr "תיעוד"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "נכשל בכניסה לשרת MySQL"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
#, fuzzy
msgid "Connection type"
msgstr "חיבורים"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "כל שרת מארח"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "כל שרת מארח"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
#, fuzzy
msgid "Hide databases"
msgstr "אין מאגרי נתונים"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
#, fuzzy
msgid "Server hostname"
msgstr "בחירת שרת"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "הוספת/מחיקת עמודות שדה"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "אל תשנה את הסיסמא"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "מאגר נתונים"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
#, fuzzy
msgid "Server port"
msgstr "קוד שרת (ID)"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "ניתוח טבלה"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "משתנים"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
#, fuzzy
msgid "Relation table"
msgstr "תיקון טבלה"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
#, fuzzy
msgid "Server socket"
msgstr "בחירת שרת"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "מציג הערות עמודה"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "איחוי טבלה"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "משפטים"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
msgid "Automatically create versions"
msgstr "גרסת שרת"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "שימוש בטבלאות"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "הערות לטבלה"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "ראיית מידע PHP"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
msgid "Show field types"
msgstr "ראיית טבלאות"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "הראה רשת"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
#, fuzzy
msgid "Show SQL queries"
msgstr "הראה שאילתות שלמות"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "שאילתת SQL"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
#, fuzzy
msgid "Show statistics"
msgstr "סטטיסטיקת שורה"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "הוספת/מחיקת עמודות שדה"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "ברירת מחדל"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7932,52 +7936,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7985,85 +7989,85 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
msgid "Proxy username"
msgstr "שם משתמש:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "סיסמא"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
msgid "Send error reports"
msgstr "קוד שרת (ID)"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
msgid "Enter executes queries in console"
msgstr "שאילתת SQL"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Local monitor configuration incompatible"
msgid "Enable Zero Configuration mode"
@@ -8089,46 +8093,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "תיעוד"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV עבור MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -13879,13 +13883,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "בעיות עם אינדקסים של טבלה `%s`"
@@ -15255,6 +15267,12 @@ msgstr "הערות"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "שבת"
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/hi.po b/po/hi.po
index a5b2217ef8..8764310980 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-02-04 18:16+0200\n"
"Last-Translator: Nisarg Jhaveri \n"
"Language-Team: Hindi %s:"
msgstr "डेटाबेस %s पर SQL क्वरी:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "क्वरी भेजें"
@@ -3627,27 +3628,27 @@ msgstr "बुकमार्क प्रदर्शित किया जा
msgid "Delete bookmark"
msgstr "संबंध हटाना"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "सर्वर जवाब नहीं दे रहा"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "विवरण…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3689,9 +3690,9 @@ msgstr[0] "%s टेबल के अंदर %s मैच हैं."
msgstr[1] "%s टेबल के अंदर %s मैच हैं."
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3753,16 +3754,16 @@ msgstr "फ़िल्टर"
msgid "Search this table"
msgstr "डाटाबेस में खोजें"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "प्रारंभ"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3770,8 +3771,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "पिछला"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3779,8 +3780,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "अगला"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3791,8 +3792,9 @@ msgstr "आखरी"
msgid "All"
msgstr "सभी"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "पंक्तियोंकी की संख्या:"
@@ -3899,16 +3901,16 @@ msgid "Query took %01.4f seconds."
msgstr "क्वरी को %01.4f सेकेंड का समय लगा"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "चुने हुओं को:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3916,7 +3918,7 @@ msgstr "चुने हुओं को:"
msgid "Check All"
msgstr "सभी को चेक करें"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "छपाई द्रश्य"
@@ -4023,11 +4025,11 @@ msgstr "संस्करण जानकारी"
msgid "Open new phpMyAdmin window"
msgstr "phpMyAdmin की नई विंडो खोलें"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4093,8 +4095,8 @@ msgstr "प्राथमिक कुंजी गिरा दी गयी
msgid "Index %s has been dropped."
msgstr "सूचकांक %s गिरा दिया गया है."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4110,7 +4112,7 @@ msgid ""
msgstr "सूचकांक %1$s और %2$s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "सर्वर"
@@ -4122,16 +4124,16 @@ msgid "View"
msgstr "दृश्य"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4143,10 +4145,10 @@ msgid "Structure"
msgstr "संरचना"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4154,19 +4156,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "ढूंढें"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4175,7 +4177,7 @@ msgid "Insert"
msgstr "इनसर्ट"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4184,21 +4186,21 @@ msgid "Privileges"
msgstr "प्रिविलेज"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "कार्रवाई"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "नज़र रखना"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4215,16 +4217,16 @@ msgstr "ट्रिगर"
msgid "Database seems to be empty!"
msgstr "डाटाबेस खाली लग रहा है!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "क्वरी"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "नियमित कार्य"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4232,18 +4234,18 @@ msgstr "नियमित कार्य"
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "डिजाइनर"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns"
msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4251,40 +4253,40 @@ msgstr "पाठ क्षेत्रपाठ क्षेत्र कोल
msgid "Databases"
msgstr "डाटाबेस"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "यूसर"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "बाइनरी लोग"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "प्रतिकृति"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "प्रक्रियां"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "चरित्र सेट"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "इंजन"
@@ -4309,7 +4311,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "एकवचन %1$d पंक्ति डाली।"
msgstr[1] "बहुवचन %1$d पंक्तिया डाली।"
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4968,12 +4970,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "अधिकतम: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4984,28 +4986,28 @@ msgstr "अधिकतम: %s%s"
msgid "MySQL said: "
msgstr "MySQL ने कहा: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "SQL की व्याख्या"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "SQL की व्याख्या को छोड़ जाना"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "php कोड के बिना"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP Code बनाओ"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit mode"
msgctxt "Inline edit query"
@@ -5013,99 +5015,93 @@ msgid "Edit inline"
msgstr "संपादन मोड"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "रविवार"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B, %Y को %I:%M %p"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "नियमित कार्य"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "\"%s\" डेटाबेस पर जायें;."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s कार्यक्षमताएक एक बग के द्वारा जनि जाती है| %s पर ध्यान दे"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "चयन करने के लिए क्लिक करें."
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "अपना कंप्यूटर ब्राउज़ करें:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "अपने वेब सर्वर की अपलोड डिरेक्टरी से चुने %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "आपकी अपलोड दिरेक्टोरी तक पहुंचा नहीं जा सकता."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no files to upload!"
msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "खाली"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "छापें"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "रचना"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "पिछला नवीनीकरण"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "पिछली जाँच"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Textarea rows"
-msgid "Start row:"
-msgstr "क्षेत्र रोयाँ"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "खोज करे:"
@@ -5128,13 +5124,13 @@ msgstr "इस मान का उपयोग करें"
msgid "Rows"
msgstr "रो"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "डाटा"
@@ -5586,7 +5582,7 @@ msgid "Set value: %s"
msgstr "मान निर्धारित: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "मूलभूत मान को बहाल"
@@ -6365,10 +6361,10 @@ msgstr "ब्राउज़ मोड अनुकूलित"
msgid "Customize default options."
msgstr "डिफ़ॉल्ट विकल्प अनुकूलित"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6932,7 +6928,7 @@ msgid "Maximum displayed SQL length"
msgstr "SQL प्रदर्शित अधिकतम लम्बाई"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "यूसरओं एक उच्च मूल्य निर्धारित नहीं कर सकते"
@@ -7177,60 +7173,68 @@ msgstr "ये हैं संपादित करें, इनलाइन
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
#, 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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "प्राकृतिक आदेश"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:531
#, fuzzy
#| msgid "Use only icons, only text or both"
msgid "Use only icons, only text or both."
msgstr "उपयोग चिह्न, पाठ या दोनों"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Iconic navigation bar"
msgid "Table navigation bar"
msgstr "प्रतिष्ठित नेविगेशन पट्टी"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
#, 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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip आउटपुट बफरिंग"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "डिफ़ॉल्ट सॉर्ट क्रम"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Use persistent connections to MySQL databases."
msgstr "MySQL के लिए लगातार कनेक्शन का उपयोग"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "के लिए"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7244,11 +7248,11 @@ msgstr ""
"डेटाबेस पर डिफ़ॉल्ट चेतावनी जो प्रदर्शित की जाती है उसे निष्क्रिय करें. संरचना पृष्ठ अगर "
"phpMyAdmin विन्यास भंडारण के लिए आवश्यक टेबल को पाया नहीं जा सका"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7258,11 +7262,11 @@ msgid ""
"MySQL library and server is detected."
msgstr "अगर mcrypt कुकी प्रमाणीकरण अक्षम है डिफ़ॉल्ट चेतावनी रदर्शित होता अक्षम है"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7275,82 +7279,82 @@ msgstr ""
"डेटाबेस पर डिफ़ॉल्ट चेतावनी जो प्रदर्शित की जाती है उसे निष्क्रिय करें. संरचना पृष्ठ अगर "
"phpMyAdmin विन्यास भंडारण के लिए आवश्यक टेबल को पाया नहीं जा सका"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
#, fuzzy
#| msgid "Allow to display all the rows"
msgid "How to display the menu tabs"
msgstr "सभी रोयों को प्रदर्शित करने की अनुमति"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
#, 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:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "बाइनरी काँलम की रक्षा"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "स्थायी क्वरी इतिहास"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "इतिहास में कितने क्वरी रखने है"
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "क्वरी इतिहास लंबाई"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
#, 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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "टेबल का नाम बदलें"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "डिफ़ॉल्ट सॉर्ट क्रम"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
#, fuzzy
#| msgid ""
#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@@ -7358,110 +7362,110 @@ msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr "हर सेल्स बाद हेडर दोहराना, [kbd]0[/kbd] इस सुविधा को निष्क्रिय करें"
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "हेडर दोहराना"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "संबंधपरक प्रदर्शन स्तंभ"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "सर्वर प्रदर्शन विकल्प"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
#, 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:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "निर्देशिका बचाना"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "इस्तेमाल नहीं तो खाली छोड़ें"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "होस्ट प्राधिकरण आदेश"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "डिफ़ॉल्ट के लिए खाली छोड़ें"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "होस्ट प्राधिकरण नियम"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "पासवर्ड के बिना प्रवेश की अनुमति"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "रूट लॉगिन की अनुमति"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "सत्र मूल्य"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "http दायरे"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey config फाइल"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "प्रमाणीकरण विधि उपयोग करने के लिए"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "प्रमाणीकरण पद्धति का उपयोग"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
#, fuzzy
#| msgid ""
#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
@@ -7472,11 +7476,11 @@ msgid ""
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "बुकमार्क टेबल"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
#, fuzzy
#| msgid ""
#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
@@ -7487,35 +7491,35 @@ msgid ""
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "काँलम जानकारी टेबल"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "MySQL सर्वर कनेक्शन संक्षिप्त करना"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "कनेक्शन संक्षिप्त करना"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
#, 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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "कनेक्शन के प्रकार"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "यूसर पासवर्ड नियंत्रण"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7528,54 +7532,54 @@ msgstr ""
"एक विशेष MySQL सर्वर सीमित अनुमति के साथ, ज्यादा जानकारी के लिए [a@http://wiki."
"phpmyadmin.net/pma/controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "नियंत्रण यूसर"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "नियंत्रण यूसर"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Control user"
msgid "Control port"
msgstr "नियंत्रण यूसर"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA का उपयोग असमर्थ करें"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "डेटाबेस छिपाना"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7587,41 +7591,41 @@ msgstr ""
"अगर आपको SQL क्वरी इतिहास नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL इतिहास क्वेरी टेबल"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
msgstr "होस्ट नाम जहाँ MySQL सर्वर चल रहा है"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "सर्वर होस्ट नाम"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "लॉगआउट URL"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "प्रदर्शित टेबल की अधिकतम संख्या"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7631,13 +7635,13 @@ msgid ""
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7647,38 +7651,38 @@ msgid ""
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "पासवर्ड के बिना कनेक्ट करने का प्रयास"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "पासवर्ड के बिना कनेक्ट करें"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "केवल सूचीबद्ध डेटाबेस दिखाएँ"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr "अगर विन्यास प्राधिकरण का उपयोग नहीं तो खाली छोड़ दें"
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "विन्यास प्राधिकरण के लिए पासवर्ड"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7687,33 +7691,33 @@ msgid ""
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF स्कीमा: पृष्ठों टेबल"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "डेटाबेस नाम"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
#, 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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "सर्वर"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -7723,13 +7727,13 @@ msgid ""
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Recall user name"
msgid "Recently used table"
msgstr "याद यूसर नाम"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -7739,13 +7743,13 @@ msgid ""
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "प्रक्रियां"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7755,45 +7759,45 @@ msgid ""
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "संबंध टेबल"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "signon सत्र नाम"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
#, 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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "सर्वर गर्तिका"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "SSL का उपयोग"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7803,11 +7807,11 @@ msgid ""
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7817,11 +7821,11 @@ msgid ""
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "काँलम टेबल दिखाएँ"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
#, fuzzy
#| msgid "blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgid ""
@@ -7830,33 +7834,33 @@ msgid ""
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "User preferences storage table"
msgid "UI preferences table"
msgstr "यूसर वरीयताओं की भंडारण टेबल"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "ड्रॉप डेटाबेस जोड़ें"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "ड्रॉप टेबल जोड़ें"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7864,19 +7868,19 @@ msgstr ""
"क्या DROP VIEW IF EXISTS बयान पहली लाइन की तरह जोड़े जायेगा, जब एक दृश्य का लोग बन "
"रहा है।"
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "DROP VIEW जोडें"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "बयान ट्रैक करने के लिए"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7888,21 +7892,21 @@ msgstr ""
"अगर आपको SQL क्वरी इतिहास नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL क्वरी ट्रैकिंग टेबल"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "स्वतः संस्करण बनाना"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -7912,37 +7916,37 @@ msgid ""
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "यूसर वरीयताओं की भंडारण टेबल"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "टेबल का उपयोग करो"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "होस्ट टेबल का उपयोग करें"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -7952,132 +7956,132 @@ msgid ""
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "विन्यास प्राधिकरण के लिए यूसर"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr "इस सर्वर का विवरण, होस्ट नाम दिखने के लिए खाली छोडें।"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "इस सर्वर का वाचाल नाम"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
#, 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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "सभी रोयों को प्रदर्शित करने की अनुमति"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "पासवर्ड बदलने के फार्म"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "डेटाबेस बनाने का फार्म"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "टेबल की टिप्पणी"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "अधिक क्रियाएँ दिखाओ"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "मास्टर अवस्था"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "फ़ील्ड प्रकार दिखाएँ"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "ग्रिड दिखाओ"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "phpinfo() लिंक दिखाएँ"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "विस्तृत mysql सर्वर जानकारी"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -8085,41 +8089,41 @@ msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "क्या phpMyAdmin द्वारा उत्पन SQL प्रशन प्रदर्शित करनी है"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "SQL प्रशन दिखाएँ"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "क्वरी बॉक्स छुपा"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
#, 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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "आँकड़े दिखाएँ"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "बंद टेबलओं को छोड़"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected"
msgid ""
@@ -8127,11 +8131,11 @@ msgid ""
"detected."
msgstr "अगर Suhosin का पता चलता है तो चेतावनी दी जाएगी"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin चेतावनी"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -8145,61 +8149,61 @@ msgstr ""
"डेटाबेस पर डिफ़ॉल्ट चेतावनी जो प्रदर्शित की जाती है उसे निष्क्रिय करें. संरचना पृष्ठ अगर "
"phpMyAdmin विन्यास भंडारण के लिए आवश्यक टेबल को पाया नहीं जा सका"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "लॉगिन कुकी वैधता"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr "क्षेत्र रोयाँ"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
#, 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:791
+#: libraries/config/messages.inc.php:793
#, 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:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "डिफ़ॉल्ट शीर्षक"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
#, 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:795
+#: libraries/config/messages.inc.php:797
#, 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:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -8207,58 +8211,58 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "विश्वसनीय proxies की सूची IP अनुमति / इनकार के लिए"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
#, 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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "अपलोड निर्देशिका"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
#, fuzzy
#| msgid "Allow for searching inside the entire database"
msgid "Allow for searching inside the entire database."
msgstr "संपूर्ण डेटाबेस के अंदर तलाश करने के लिए अनुमति"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "डेटाबेस खोज का प्रयोग"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "सेटिंग्स में डेवलपर टैब को सक्रिय करें"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "नवीनतम संस्करण के लिए जाँच"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
#, 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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8266,34 +8270,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "यूसर नाम"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "पासवर्ड"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -8305,53 +8309,53 @@ msgstr ""
"आयात और निर्यात के संचालन के लिए सक्षम संपीड़न [a@http://en.wikipedia.org/wiki/"
"Gzip]gzip[/a]"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "सर्वर"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8379,46 +8383,46 @@ msgstr "HTTP प्रमाणीकरण"
msgid "Signon authentication"
msgstr "signon प्रमाणीकरण"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Spreadsheet"
msgstr "दस्तावेज़ खोलें"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "तुरंत"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "कस्टम"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "डेटाबेस निर्यात विकल्प"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV for MX Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Text"
@@ -14213,19 +14217,31 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "PHP कोड की तरह दिखाएँ"
-#: libraries/sql.lib.php:1765
-#, fuzzy
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
#| 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि ग्रिड "
"सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी सुविधाएँ काम न करें।"
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि ग्रिड "
+"सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी सुविधाएँ काम न करें।"
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`%s` टेबल के अनुक्रमित के साथ समस्याएँ"
@@ -15609,6 +15625,12 @@ msgstr "टिप्पणी"
msgid "Drag to reorder"
msgstr "पुनः व्यवस्थित करने के लिए घसीटें"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Textarea rows"
+msgid "Start row:"
+msgstr "क्षेत्र रोयाँ"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "स्तंभ चुनें (कम से कम एक):"
diff --git a/po/hr.po b/po/hr.po
index 6372625d76..b6649b6876 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-03-28 11:02+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Croatian %s:"
msgstr "SQL upit nad bazom podataka %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Podnesi upit"
@@ -3777,7 +3778,7 @@ msgstr "Prikazivanje oznake"
msgid "Delete bookmark"
msgstr "Izbriši relaciju"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3786,21 +3787,21 @@ msgid ""
msgstr ""
"(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)"
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Poslužitelj ne odgovara"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Detalji…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Povezivanje kontrolnih korisnika na način kako je definirano u vašoj "
@@ -3844,9 +3845,9 @@ msgstr[0] "%s poklapanja unutar tablice %s"
msgstr[1] "%s poklapanja unutar tablice %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3906,16 +3907,16 @@ msgstr "Datoteke"
msgid "Search this table"
msgstr "Traži u bazi podataka"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Na vrh stranice"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3923,8 +3924,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Prethodni"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3932,8 +3933,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "Sljedeće"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3944,8 +3945,9 @@ msgstr "Završetak"
msgid "All"
msgstr "Sve"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows:"
@@ -4061,16 +4063,16 @@ msgid "Query took %01.4f seconds."
msgstr "Upit je trajao %01.4f sek"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "S odabirom:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -4078,7 +4080,7 @@ msgstr "S odabirom:"
msgid "Check All"
msgstr "Označi sve"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Prikaz ispisa"
@@ -4189,11 +4191,11 @@ msgstr "Podaci o verziji"
msgid "Open new phpMyAdmin window"
msgstr "Otvori novi phpMyAdmin prozor"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4259,8 +4261,8 @@ msgstr "Primarni ključ je odbačen."
msgid "Index %s has been dropped."
msgstr "Index %s je odbačen."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4277,7 +4279,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:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Poslužitelj"
@@ -4289,16 +4291,16 @@ msgid "View"
msgstr "Prikaz"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4310,10 +4312,10 @@ msgid "Structure"
msgstr "Strukturu"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4321,19 +4323,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Traži"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4342,7 +4344,7 @@ msgid "Insert"
msgstr "Umetni"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4351,21 +4353,21 @@ msgid "Privileges"
msgstr "Privilegije"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operacije"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Praćenje"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4382,16 +4384,16 @@ msgstr "Okidači"
msgid "Database seems to be empty!"
msgstr "Baza podataka izgleda praznom!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Upit"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rutine"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4399,18 +4401,18 @@ msgstr "Rutine"
msgid "Events"
msgstr "Događaji"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Kreator"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns"
msgstr "Dodaj/Izbriši stupce polja"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4418,40 +4420,40 @@ msgstr "Dodaj/Izbriši stupce polja"
msgid "Databases"
msgstr "Baze podataka"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "Korisnik"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Binarni zapisnik"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replikacija"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Varijable"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Tablice znakova"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Dodatci"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Pogoni"
@@ -4479,7 +4481,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "Umetnuto redaka: %1$d."
msgstr[1] "Umetnuto redaka: %1$d."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -5136,12 +5138,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Najv: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5152,28 +5154,28 @@ msgstr "Najv: %s%s"
msgid "MySQL said: "
msgstr "MySQL je poručio: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Objasni SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Preskoči Objasni SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Bez PHP koda"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Izradi PHP kod"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Print view"
msgctxt "Inline edit query"
@@ -5181,97 +5183,91 @@ msgid "Edit inline"
msgstr "Prikaz ispisa"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ned"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y u %I:%M %p"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dana, %s sati, %s minuta i %s sekunda"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Rutine"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Skoči do baze podataka \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Pretraži računalo:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "mapa učitavanja web poslužitelja"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Mapu koju ste odabrali za potrebe učitavanja nije moguće dohvatiti."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
msgid "There are no files to upload!"
msgstr "Provjeri tablicu"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Isprazni"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Izvrši"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Ispiši"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Izrada"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Posljednje ažuriranje"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Posljednja provjera"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "Sub"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Pretraživanje:"
@@ -5294,13 +5290,13 @@ msgstr "Upotrijebi ovu vrijednost"
msgid "Rows"
msgstr "Redaka"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5768,7 +5764,7 @@ msgid "Set value: %s"
msgstr "Postavi vrijednost %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Vrati zadanu vrijednost"
@@ -6496,10 +6492,10 @@ msgstr "Rad s automatskim povratom"
msgid "Customize default options."
msgstr "Opcije izvoza baze podataka"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6998,7 +6994,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -7223,899 +7219,907 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Izmijeni rasporede tablice po"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Naslov tablice"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, fuzzy
#| msgid "Persistent connections"
msgid "Use persistent connections to MySQL databases."
msgstr "Stalne veze"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Stalne veze"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Preimenuj tablicu u"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, 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:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Popravi grane"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display"
msgstr "Polje za prikaz relacija"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
msgid "For display Options"
msgstr "Opcije izvoza baze podataka"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
#, fuzzy
msgid "Save directory"
msgstr "Osnovna mapa podataka"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Vrijednost sesije"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
msgid "Authentication method to use."
msgstr "Replikacija"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Tip autentifikacije"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Zabilježi tablicu"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, 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:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Komprimiraj vezu"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
#, fuzzy
msgid "Connection type"
msgstr "Veze"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Kontroliraj korisničke lozinke"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Bilo koje računalo"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Bilo koje računalo"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
#, fuzzy
msgid "Hide databases"
msgstr "Nema baza podataka"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
#, fuzzy
msgid "Server hostname"
msgstr "naziv poslužitelja"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Dodaj/Izbriši stupce polja"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Connect without password"
msgid "Try to connect without password."
msgstr "Spoji se bez lozinke"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Spoji se bez lozinke"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "naziv baze podataka"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
#, fuzzy
msgid "Server port"
msgstr "ID poslužitelja"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analiziraj tablicu"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Varijable"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
#, fuzzy
msgid "Relation table"
msgstr "Popravi tablicu"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
#, fuzzy
msgid "Server socket"
msgstr "Odabir poslužitelja"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Koristi SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Prikazivanje stupca komentara"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Defragmentiraj tablicu"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Izjave"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Rad s automatskim povratom"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Upotrijebi tablice"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Upotrijebi tablicu poslužitelja"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Komentari tablice"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Prikaži PHP podatke"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Prikaži stanje potčinjenog"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Prikaži otvorene tablice"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Prikaži mrežu"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Prikaži phpinfo() link"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Prikaži detaljne informacije o MySQL serveru"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
#, fuzzy
msgid "Show SQL queries"
msgstr "Prikaži pune upite"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
-msgstr ""
-
-#: libraries/config/messages.inc.php:772
-#, fuzzy
-msgid "Show statistics"
-msgstr "Statistike redova"
-
#: libraries/config/messages.inc.php:773
-msgid ""
-"Mark used tables and make it possible to show databases with locked tables."
+msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
#: libraries/config/messages.inc.php:774
#, fuzzy
+msgid "Show statistics"
+msgstr "Statistike redova"
+
+#: libraries/config/messages.inc.php:775
+msgid ""
+"Mark used tables and make it possible to show databases with locked tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:776
+#, fuzzy
msgid "Skip locked tables"
msgstr "Prikaži otvorene tablice"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Dodaj/Izbriši stupce polja"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
msgid "Default title"
msgstr "Preimenuj bazu podataka u"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -8123,53 +8127,53 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
#, fuzzy
msgid "Upload directory"
msgstr "Osnovna mapa podataka"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8177,85 +8181,85 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
msgid "Proxy username"
msgstr "Korisničko ime:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Lozinka"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
msgid "Send error reports"
msgstr "ID poslužitelja"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8281,48 +8285,48 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV upotrebom LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Otvori izračunsku tablicu dokumenta"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Brzo"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Prilagođena boja"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Opcije izvoza baze podataka"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV za MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -14468,13 +14472,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Prikazivanje kao PHP koda"
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemi s indeksima tablice `%s`"
@@ -15880,6 +15892,12 @@ msgstr "Komentar"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "Sub"
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/hu.po b/po/hu.po
index 376ef0e52b..1c121cb125 100644
--- a/po/hu.po
+++ b/po/hu.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-06-20 23:27+0200\n"
"Last-Translator: Balázs Úr \n"
-"Language-Team: Hungarian "
-"\n"
+"Language-Team: Hungarian \n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -299,7 +299,7 @@ msgid "Tracked tables"
msgstr "Nyomon követett táblák"
#: db_tracking.php:125 db_tracking.php:287 libraries/Menu.class.php:247
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:798
#: 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
@@ -325,7 +325,7 @@ msgid "Updated"
msgstr "Frissítve"
#: db_tracking.php:129 js/messages.php:237 libraries/Menu.class.php:551
-#: libraries/Util.class.php:4386 libraries/config.values.php:104
+#: libraries/Util.class.php:4391 libraries/config.values.php:104
#: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101
#: libraries/server_status_processes.lib.php:94 libraries/tracking.lib.php:278
msgid "Status"
@@ -510,8 +510,8 @@ msgstr "Geometria hozzáadása"
#: gis_data_editor.php:407 js/messages.php:286
#: libraries/DbSearch.class.php:467 libraries/DisplayResults.class.php:1807
-#: libraries/Util.class.php:4885 libraries/browse_foreigners.lib.php:142
-#: libraries/core.lib.php:610 libraries/display_change_password.lib.php:109
+#: 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_import.lib.php:392 libraries/index.lib.php:44
@@ -540,8 +540,9 @@ msgstr "Geometria hozzáadása"
#: libraries/tracking.lib.php:532 libraries/tracking.lib.php:652
#: prefs_manage.php:277 prefs_manage.php:355
#: templates/columns_definitions/column_definitions_form.phtml:59
-#: templates/index_form.phtml:238 templates/table/selection_form.phtml:75
-#: view_create.php:276 view_operations.php:106
+#: templates/index_form.phtml:238 templates/startAndNumberOfRowsPanel.phtml:14
+#: templates/table/selection_form.phtml:75 view_create.php:276
+#: view_operations.php:106
msgid "Go"
msgstr "Indítás"
@@ -667,7 +668,7 @@ msgstr ""
msgid "Could not load the progress of the import."
msgstr "Nem sikerült betölteni az importálás folyamatát."
-#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:735
+#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:738
#: libraries/export.lib.php:464
#: libraries/plugins/schema/Export_Relation_Schema.class.php:302
#: user_password.php:208
@@ -763,7 +764,7 @@ msgstr "PHP információ megjelenítése"
msgid "Version information:"
msgstr "Verziószám:"
-#: index.php:392 libraries/Util.class.php:429 libraries/Util.class.php:490
+#: 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/navigation/NavigationHeader.class.php:197
@@ -895,7 +896,7 @@ msgstr ""
"A kiszolgáló Suhosinnal fut. Kérjük, hogy a lehetséges problémáknak nézzen "
"utána a %sdokumentációban%s."
-#: js/messages.php:38 libraries/import.lib.php:125 sql.php:151
+#: js/messages.php:38 libraries/import.lib.php:125 sql.php:161
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "A \"DROP DATABASE\" utasítást letiltották."
@@ -1120,7 +1121,7 @@ msgstr "Lekérdezés szimulálása"
msgid "Matched rows:"
msgstr "Illeszkedő sorok:"
-#: js/messages.php:114 libraries/Util.class.php:638
+#: js/messages.php:114 libraries/Util.class.php:641
msgid "SQL query:"
msgstr "SQL lekérdezés:"
@@ -1163,12 +1164,12 @@ msgid "Other"
msgstr "Egyéb"
#. l10n: Thousands separator
-#: js/messages.php:131 libraries/Util.class.php:1460
+#: js/messages.php:131 libraries/Util.class.php:1463
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:133 libraries/Util.class.php:1462
+#: js/messages.php:133 libraries/Util.class.php:1465
msgid "."
msgstr "."
@@ -1274,40 +1275,40 @@ msgid "Processes"
msgstr "Folyamatok"
#. l10n: shortcuts for Byte
-#: js/messages.php:167 libraries/Util.class.php:1404
+#: js/messages.php:167 libraries/Util.class.php:1407
msgid "B"
msgstr "B"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:168 libraries/Util.class.php:1406
+#: js/messages.php:168 libraries/Util.class.php:1409
#: libraries/server_status_monitor.lib.php:217
msgid "KiB"
msgstr "KB"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:169 libraries/Util.class.php:1408
+#: js/messages.php:169 libraries/Util.class.php:1411
#: libraries/display_export.lib.php:702
#: libraries/server_status_monitor.lib.php:218
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:170 libraries/Util.class.php:1410
+#: js/messages.php:170 libraries/Util.class.php:1413
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:171 libraries/Util.class.php:1412
+#: js/messages.php:171 libraries/Util.class.php:1415
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:172 libraries/Util.class.php:1414
+#: js/messages.php:172 libraries/Util.class.php:1417
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:173 libraries/Util.class.php:1416
+#: js/messages.php:173 libraries/Util.class.php:1419
msgid "EiB"
msgstr "EiB"
@@ -1326,7 +1327,7 @@ msgid "Traffic"
msgstr "Forgalom"
#: js/messages.php:179 libraries/Menu.class.php:585
-#: libraries/Util.class.php:4390 libraries/server_status_monitor.lib.php:257
+#: libraries/Util.class.php:4395 libraries/server_status_monitor.lib.php:257
msgid "Settings"
msgstr "Beállítások"
@@ -1639,8 +1640,8 @@ msgstr ""
#: js/messages.php:264 libraries/Menu.class.php:350
#: libraries/Menu.class.php:453 libraries/Menu.class.php:581
-#: libraries/Util.class.php:4389 libraries/Util.class.php:4404
-#: libraries/Util.class.php:4421 libraries/config/messages.inc.php:236
+#: libraries/Util.class.php:4394 libraries/Util.class.php:4409
+#: libraries/Util.class.php:4426 libraries/config/messages.inc.php:236
#: libraries/display_import.lib.php:105
#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:238
#: setup/frames/menu.inc.php:26
@@ -1710,7 +1711,7 @@ msgstr "SQL formázása…"
msgid "Cancel"
msgstr "Mégse"
-#: js/messages.php:290 libraries/Header.class.php:456
+#: js/messages.php:290 libraries/Header.class.php:455
msgid "Page-related settings"
msgstr "Oldallal kapcsolatos beállítások"
@@ -1787,7 +1788,7 @@ msgstr "Adatbázis másolása"
msgid "Changing Charset"
msgstr "Karakterkészlet változtatása"
-#: js/messages.php:314 libraries/Util.class.php:3234
+#: js/messages.php:314 libraries/Util.class.php:3237
msgid "Enable foreign key checks"
msgstr "Idegen kulcsok ellenőrzésének engedélyezése"
@@ -1823,9 +1824,9 @@ msgstr ""
#: js/messages.php:328 libraries/DisplayResults.class.php:4857
#: libraries/DisplayResults.class.php:5115 libraries/Menu.class.php:342
#: libraries/Menu.class.php:444 libraries/Menu.class.php:577
-#: libraries/Util.class.php:3675 libraries/Util.class.php:3676
-#: libraries/Util.class.php:4388 libraries/Util.class.php:4403
-#: libraries/Util.class.php:4420 libraries/config/messages.inc.php:230
+#: libraries/Util.class.php:3680 libraries/Util.class.php:3681
+#: libraries/Util.class.php:4393 libraries/Util.class.php:4408
+#: libraries/Util.class.php:4425 libraries/config/messages.inc.php:230
#: libraries/display_export.lib.php:167 libraries/rte/rte_list.lib.php:146
#: libraries/server_privileges.lib.php:2085
#: libraries/server_privileges.lib.php:2164
@@ -1875,11 +1876,11 @@ msgstr "Lekérdezési doboz megjelenítése"
#: js/messages.php:343 libraries/Console.class.php:88
#: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3450
#: libraries/DisplayResults.class.php:4839 libraries/Index.class.php:723
-#: libraries/Util.class.php:664 libraries/Util.class.php:1218
-#: libraries/Util.class.php:3673 libraries/Util.class.php:3674
+#: libraries/Util.class.php:667 libraries/Util.class.php:1221
+#: 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:775
+#: libraries/config/messages.inc.php:777
#: libraries/server_user_groups.lib.php:119
#: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179
msgid "Edit"
@@ -2673,63 +2674,63 @@ msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1620
+#: js/messages.php:655 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1622
+#: js/messages.php:657 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1624
+#: js/messages.php:659 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Már"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1626
+#: js/messages.php:661 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Ápr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1628
+#: js/messages.php:663 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:1630
+#: js/messages.php:665 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Jún"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1632
+#: js/messages.php:667 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Júl"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1634
+#: js/messages.php:669 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1636
+#: js/messages.php:671 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Sze"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1638
+#: js/messages.php:673 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1640
+#: js/messages.php:675 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1642
+#: js/messages.php:677 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Dec"
@@ -2767,32 +2768,32 @@ msgid "Sun"
msgstr "Vas"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1647
+#: js/messages.php:698 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Hét"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1649
+#: js/messages.php:700 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Ked"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1651
+#: js/messages.php:702 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Sze"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1653
+#: js/messages.php:704 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Csü"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1655
+#: js/messages.php:706 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Pén"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1657
+#: js/messages.php:708 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Szo"
@@ -2934,7 +2935,7 @@ msgid "Please enter a valid HEX input"
msgstr "Adjon meg egy érvényes HEX bemenetet"
#: js/messages.php:785 libraries/Message.class.php:199
-#: libraries/Util.class.php:624 libraries/core.lib.php:245
+#: 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
msgid "Error"
@@ -3036,7 +3037,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:790
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3085,7 +3086,7 @@ msgstr "Jelenlegi munkamenet közben"
msgid "Explain"
msgstr "Magyarázat"
-#: libraries/Console.class.php:216 libraries/Util.class.php:1291
+#: libraries/Console.class.php:216 libraries/Util.class.php:1294
#: libraries/sql.lib.php:278
msgid "Profiling"
msgstr "Adatgyűjtés"
@@ -3166,17 +3167,14 @@ msgid "Press Enter to execute query"
msgstr "Nyomja meg az Entert a lekérdezés végrehajtásához"
#: libraries/Console.class.php:277
-#| msgid "Ascending"
msgid "ascending"
msgstr "növekvő"
#: libraries/Console.class.php:280
-#| msgid "Descending"
msgid "descending"
msgstr "csökkenő"
#: libraries/Console.class.php:283
-#| msgid "Order"
msgid "Order:"
msgstr "Sorrend:"
@@ -3185,17 +3183,14 @@ msgid "Count"
msgstr "Számláló"
#: libraries/Console.class.php:292
-#| msgid "Execute every"
msgid "Execution order"
msgstr "Végrehajtási sorrend"
#: libraries/Console.class.php:295
-#| msgid "Time taken:"
msgid "Time taken"
msgstr "Felhasznált idő"
#: libraries/Console.class.php:298
-#| msgid "Order"
msgid "Order by:"
msgstr "Sorrend:"
@@ -3219,8 +3214,8 @@ msgstr "Nyomkövetés elrejtése"
msgid "Count:"
msgstr "Darabszám:"
-#: libraries/Console.class.php:332 libraries/Util.class.php:1260
-#: libraries/config/messages.inc.php:777
+#: libraries/Console.class.php:332 libraries/Util.class.php:1263
+#: libraries/config/messages.inc.php:779
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3369,7 +3364,7 @@ msgstr "Del:"
msgid "SQL query on database %s:"
msgstr "SQL-lekérdezés a(z) %s adatbázison:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Lekérdezés indítása"
@@ -3393,7 +3388,7 @@ msgstr "Könyvjelző frissítése"
msgid "Delete bookmark"
msgstr "Könyvjelző törlése"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3401,20 +3396,20 @@ msgstr ""
"A kiszolgáló nem válaszol (vagy a helyi kiszolgáló socket nincs megfelelően "
"beállítotva)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "A kiszolgáló nem válaszol."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
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:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Részletek…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
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 "
@@ -3456,9 +3451,9 @@ msgstr[0] "%1$s találat ebben: %2$s"
msgstr[1] "%1$s találat ebben: %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3512,28 +3507,28 @@ msgstr "Sorok szűrése"
msgid "Search this table"
msgstr "Keresés a táblában"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Kezdet"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Előző"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Következő"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Vége"
@@ -3542,8 +3537,9 @@ msgstr "Vége"
msgid "All"
msgstr "Mind"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Sorok száma:"
@@ -3641,16 +3637,16 @@ msgid "Query took %01.4f seconds."
msgstr "A lekérdezés %01.4f másodpercig tartott."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "A kijelöltekkel végzendő művelet:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3658,7 +3654,7 @@ msgstr "A kijelöltekkel végzendő művelet:"
msgid "Check All"
msgstr "Mind kijelölése"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Nyomtatási nézet"
@@ -3757,11 +3753,11 @@ msgstr "Git információ hiányzik!"
msgid "Open new phpMyAdmin window"
msgstr "Új phpMyAdmin ablak nyitása"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Kattintson a sávra az oldal tetejére való görgetéshez"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Ettől a ponttól engedélyeznie kell a JavaScriptet!"
@@ -3825,8 +3821,8 @@ msgstr "Az elsődleges kulcs eldobása megtörtént."
msgid "Index %s has been dropped."
msgstr "A(z) %s index eldobása megtörtént."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3844,7 +3840,7 @@ msgstr ""
"eltávolítható."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Kiszolgáló"
@@ -3856,16 +3852,16 @@ msgid "View"
msgstr "Nézet"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3877,10 +3873,10 @@ msgid "Structure"
msgstr "Szerkezet"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3888,19 +3884,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Keresés"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3909,7 +3905,7 @@ msgid "Insert"
msgstr "Beszúrás"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3918,21 +3914,21 @@ msgid "Privileges"
msgstr "Jogok"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Műveletek"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Követés"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3949,16 +3945,16 @@ msgstr "Eseményindítók"
msgid "Database seems to be empty!"
msgstr "Üresnek tűnik az adatbázis!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Lekérdezés"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Eljárások"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3966,16 +3962,16 @@ msgstr "Eljárások"
msgid "Events"
msgstr "Események"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Tervező"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Központi oszlopok"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3983,38 +3979,38 @@ msgstr "Központi oszlopok"
msgid "Databases"
msgstr "Adatbázisok"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Felhasználók"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Bináris napló"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Többszörözés"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Változók"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Karakterkészlet"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Bővítmények"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Motorok"
@@ -4039,7 +4035,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "A(z) %1$d sor beszúrása megtörtént."
msgstr[1] "A(z) %1$d sor beszúrása megtörtént."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4706,12 +4702,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Felsorolás, meghatározott értékek listájából kiválasztva"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Max: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4722,118 +4718,114 @@ msgstr "Max: %s%s"
msgid "MySQL said: "
msgstr "A MySQL mondta: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Az SQL magyarázata"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "SQL magyarázat átugrása"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr "Magyarázat elemzése itt: %s"
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "PHP kód nélkül"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP-kód létrehozása"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Szerkesztés helyben"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Vas"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y. %B %d. %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s nap, %s óra, %s perc, %s másodperc"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Hiányzó paraméter:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Ugrás a(z) \"%s\" adatbázishoz."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Kattintson a váltáshoz"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Számítógép tallózása:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Válasszon a webkiszolgáló feltöltési könyvtárából %s :"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Nem elérhető a feltöltésekhez megadott könyvtár."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Nincsenek feltöltendő fájlok!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Kiürítés"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Végrehajtás"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Nyomtatás"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Létrehozás"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Utolsó frissítés"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Utolsó ellenőrzés"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Kezdő sor:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Keresés:"
@@ -4856,13 +4848,13 @@ msgstr "Ezen érték használata"
msgid "Rows"
msgstr "Sorok"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5281,7 +5273,7 @@ msgid "Set value: %s"
msgstr "Adja meg az értéket: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Alapértelmezett érték visszaállítása"
@@ -6041,10 +6033,10 @@ msgstr "A böngésző mód testreszabása."
msgid "Customize default options."
msgstr "Alapértelmezett beállítások testreszabása."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6528,7 +6520,7 @@ 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:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "A felhasználók nem adhatnak meg nagyobb értéket"
@@ -6736,35 +6728,43 @@ msgstr "Ezek a Szerkesztés, Másolás és Törlés hivatkozások."
msgid "Where to show the table row links"
msgstr "Hol legyenek a táblasor linkek"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Természetes rendezés"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Csak ikonok, csak szöveg vagy mindkettő használata."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Navigációs sáv"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip-kimenet pufferelése"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6772,19 +6772,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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Alapértelmezett rendezési mód"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Állandó kapcsolatok használata a MySQL adatbázisokhoz."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Állandó kapcsolatok"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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 +6794,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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Hiányzó phpMyAdmin beállítástároló táblák"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6806,11 +6806,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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Kiszolgáló/programkönyvtár eltérés figyelmeztetés"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6818,27 +6818,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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "MySQL fenntartott kifejezés figyelmeztetés"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Menü fülek megjelenítésének módja"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Hogy jelenjenek meg a különböző műveletek linkjei"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
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:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "A bináris mezők védelme"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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 +6849,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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Állandó lekérdezési előzmények"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
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:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "A lekérdezési előzmények hossza"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Átkódoló motor"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Emlékezzen a tábla elrendezésére"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
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:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Elsődleges kulcs alapértelmezett rendezési sorrendje"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
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:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Fejlécek ismétlése"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Rács szerkesztés: eseményindító művelet"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Relációs megjelenítés"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "A beállítások megjelenítéséhez"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
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:558
+#: libraries/config/messages.inc.php:560
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:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Mentési könyvtár"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Hagyja üresen, ha nem használja."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Az állomás hitelesítési sorrendje"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Hagyja üresen az alapértelmezésekhez."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Az állomás hitelesítési szabályai"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "A jelszó nélküli bejelentkezés engedélyezése"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "A root bejelentkezés engedélyezése"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Munkamenet időzóna"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -6960,15 +6960,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:569
+#: libraries/config/messages.inc.php:571
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:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP-tartomány"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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 +6978,19 @@ msgstr ""
"elérési útja (nem a dokumentum gyökerében található; javaslat: /etc/swekey."
"conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey konfigurációs fájl"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "A használandó hitelesítési mód."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Hitelesítés típusa"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -6998,11 +6998,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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Könyvjelzők táblája"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7010,33 +7010,33 @@ msgstr ""
"Hagyja üresen, ha nincs oszlopmegjegyzés/mime-típus, ajánlott: "
"[kbd]pma_column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Oszlopinformációs tábla"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "A MySQL-kiszolgálóhoz való kapcsolat tömörítése."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Kapcsolat tömörítése"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Csatlakozás típusa"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "A kontrollfelhasználó jelszava"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7045,11 +7045,11 @@ msgstr ""
"információk érhetők el a [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/"
"a] oldalon."
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Kontrollfelhasználó"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7057,11 +7057,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:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Kontrollgép"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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 +7071,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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Kontroll port"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "A (PCRE) reguláris kifejezésre illeszkedő adatbázisok elrejtése."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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 +7088,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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Az INFORMATION_SCHEMA használatának letiltása"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Adatbázisok elrejtése"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7104,23 +7104,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:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL-lekérdezések előzményeinek táblája"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "A gépnév, ahol a MySQL-kiszolgáló fut."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "A kiszolgáló gépneve"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "Kijelentkezési URL"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7128,15 +7128,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:629
+#: libraries/config/messages.inc.php:631
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:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "QBE mentett keresések táblája"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7144,11 +7144,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:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Központi oszlopok táblája"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7156,15 +7156,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:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Kapcsolódási kísérlet jelszó nélkül."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Kapcsolódás jelszó nélkül"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 +7174,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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Csak a kilistázott adatbázisok megjelenítése"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
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:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "A konfigurációs hitelesítés jelszava"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF-séma: pages table"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 +7208,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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Adatbázis neve"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "A kiszolgáló portja"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7231,11 +7231,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:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Utoljára használt tábla"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7243,11 +7243,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:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Kedvencek tábla"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7255,11 +7255,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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Kapcsolat tábla"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7267,33 +7267,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:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Signon munkamenet neve"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "Signon URL-címe"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "A kiszolgáló szoftvercsatornája"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "SSL használata"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7301,11 +7301,11 @@ msgstr ""
"Hagyja üresen, ha nincs PDF-séma támogatás, ajánlott: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Tervező és PDF-séma: table coordinates"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7313,11 +7313,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:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Oszlopok tábla megjelenítése"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7325,11 +7325,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:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Felhasználói felület beállítások tábla"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7337,11 +7337,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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE hozzáadása"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7349,11 +7349,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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "DROP TABLE hozzáadása"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7361,20 +7361,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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "DROP VIEW hozzáadása"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
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:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Utasítások követésre"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7382,11 +7382,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:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL-lekérdezések követésének táblája"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7394,11 +7394,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:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Verziók automatikus létrehozása"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7406,11 +7406,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:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Felhasználók beállításainak tárolótáblája"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 +7420,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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Felhasználók tábla"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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 +7434,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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Felhasználói csoport tábla"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7446,15 +7446,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:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Rejtett navigációs elemek tábla"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "A konfigurációs hitelesítés felhasználóneve"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7462,21 +7462,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:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "A kiszolgáló részletes neve"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Az összes sor megjelenítésének engedélyezése"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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 +7486,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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "A jelszómódosító űrlap megjelenítése"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Az adatbázis létrehozása űrlap megjelenítése"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
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:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr "Tábla megjegyzéseinek megjelenítése"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
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:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Létrehozás időbélyegének megjelenítése"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
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:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Legutóbbi változás időbélyegének megjelenítése"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
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:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Utolsó ellenőrzés időbélyegének megjelenítése"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7544,27 +7544,27 @@ msgstr ""
"Megadja, hogy a típusmezők kezdetben megjelenjenek-e a szerkesztés/beszúró "
"módban."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Mezőtípusok megjelenítése"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
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:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "A függvénymezők megjelenítése"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Jelenjen-e meg javaslat vagy sem."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Segítség megjelenítése"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7572,58 +7572,58 @@ msgstr ""
"Megjeleníti a [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"kimenetre mutató hivatkozást."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "A phpinfo() hivatkozás megjelenítése"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Részletes MySQL kiszolgáló információk megjelenítése"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
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:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Az SQL-lekérdezések megjelenítése"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
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:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Lekérdezési doboz megőrzése"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "A statisztika megjelenítése"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
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:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "A zárolt táblák kihagyása"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7631,11 +7631,11 @@ msgstr ""
"Az alapértelmezett figyelmeztetés letiltása, amely a főoldalon jelenik meg, "
"ha Suhosin észlelhető."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin figyelmeztetés"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 +7645,11 @@ msgstr ""
"session.gc_maxlifetime PHP beállítás értéke kisebb a „LoginCookieValidity” "
"értékénél."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "Bejelentkezési cookie érvényesség figyelmeztetés"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7657,11 +7657,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:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Szövegdoboz oszlopai"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7669,31 +7669,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:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Szövegdoboz sorai"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
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:791
+#: libraries/config/messages.inc.php:793
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:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Alapértelmezett cím"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
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:795
+#: libraries/config/messages.inc.php:797
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:797
+#: libraries/config/messages.inc.php:799
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 +7705,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:798
+#: libraries/config/messages.inc.php:800
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:799
+#: libraries/config/messages.inc.php:801
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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Feltöltési könyvtár"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
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:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Adatbázis-kereső használata"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7734,26 +7734,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:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Fejlesztő fül engedélyezése a beállításokban"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Új verzió ellenőrzése"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 +7765,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:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Proxy URL"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7779,19 +7779,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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Proxy felhasználónév"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "A jelszó a proxyval való hitelesítéshez."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Proxy jelszó"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7799,36 +7799,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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
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:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "reCaptcha nyilvános kulcsa"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
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:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "reCaptcha privát kulcsa"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
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:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Hibajelentések küldése"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7836,11 +7836,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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr "Az Enter a parancssorban hajtja végre a lekérdezéseket"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7848,7 +7848,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:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Zéró beállítási mód engedélyezése"
@@ -7873,44 +7873,44 @@ msgstr "HTTP hitelesítés"
msgid "Signon authentication"
msgstr "Signon hitelesítés"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV a LOAD DATA használatával"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Open Document munkafüzet"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Gyors"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Egyedi"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Adatbázis exportálási beállításai"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "MS Excel CSV adat"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Open Document szöveges dokumentum"
@@ -13681,15 +13681,31 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Megjelenítés PHP kódként"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"A jelenlegi kijelölés nem tartalmaz egyedi oszlopot. A Rács szerkesztése, "
"jelölőnégyzet, Szerkesztés, Másolás és Törlés funkciók nem érhetők el."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"A jelenlegi kijelölés nem tartalmaz egyedi oszlopot. A Rács szerkesztése, "
+"jelölőnégyzet, Szerkesztés, Másolás és Törlés funkciók nem érhetők el."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probléma a(z) `%s` tábla indexeivel"
@@ -14951,6 +14967,10 @@ msgstr "Megjegyzés:"
msgid "Drag to reorder"
msgstr "Húzza az újrarendezéshez"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Kezdő sor:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Válasszon oszlopokat (legalább egyet):"
diff --git a/po/hy.po b/po/hy.po
index b4565cb9cf..c7b1a6e1ca 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-11-14 19:09+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Armenian %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Կատարել հարցումը"
@@ -3346,25 +3347,25 @@ msgstr "Հեռացնել"
msgid "Delete bookmark"
msgstr "Հեռացնել"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3403,9 +3404,9 @@ msgid_plural "%1$s matches in %2$s"
msgstr[0] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3461,28 +3462,28 @@ msgstr ""
msgid "Search this table"
msgstr "Որոնումը տվյալների բազայում"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr ""
@@ -3491,8 +3492,9 @@ msgstr ""
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3590,16 +3592,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Նշվածները՝"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3607,7 +3609,7 @@ msgstr "Նշվածները՝"
msgid "Check All"
msgstr "Նշել բոլորը"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr ""
@@ -3704,11 +3706,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3772,8 +3774,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3789,7 +3791,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -3801,16 +3803,16 @@ msgid "View"
msgstr "Ներկայացում"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3822,10 +3824,10 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3833,19 +3835,19 @@ msgid "SQL"
msgstr ""
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Որոնում"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3854,7 +3856,7 @@ msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3863,21 +3865,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr ""
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3894,16 +3896,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3911,16 +3913,16 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr ""
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3928,38 +3930,38 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr ""
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Վերարադրում"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -3984,7 +3986,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4599,12 +4601,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4615,118 +4617,114 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr ""
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Դատարկել"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Ստեղծում"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Վերջին թարմացումը"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Վերջին ստուգումը"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr ""
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -4751,13 +4749,13 @@ msgstr "Օգտագործել այս արժեքը"
msgid "Rows"
msgstr "Տողեր"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5178,7 +5176,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -5848,10 +5846,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6299,7 +6297,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6500,838 +6498,846 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table comments"
msgid "Table navigation bar"
msgstr "Աղյուսակի մեկնաբանությունը"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Table comments"
msgid "For display Options"
msgstr "Աղյուսակի մեկնաբանությունը"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Inside tables:"
msgid "Favorites table"
msgstr "Աղյուսակներ՝"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Օգտագործել աղյուսակներ"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Աղյուսակի մեկնաբանությունը"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
+msgid ""
+"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772
-msgid "Show statistics"
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+msgid "Retain query box"
msgstr ""
#: libraries/config/messages.inc.php:773
+msgid "Allow to display database and table statistics (eg. space usage)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:774
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7339,52 +7345,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7392,80 +7398,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7489,44 +7495,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr ""
@@ -12906,13 +12912,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -14148,6 +14162,10 @@ msgstr "Մեկնաբանություն՝"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr ""
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/ia.po b/po/ia.po
index 6f46f539d4..f865ed635c 100644
--- a/po/ia.po
+++ b/po/ia.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-06-19 17:13+0200\n"
"Last-Translator: Giovanni Sora \n"
"Language-Team: Interlingua %s:"
msgstr "SQL-query sur base de datos %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Submitte Query"
@@ -3418,7 +3419,7 @@ msgstr "Actualisa marcator de libro"
msgid "Delete bookmark"
msgstr "Dele marcator de libro"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3426,21 +3427,21 @@ msgstr ""
"Le servitor non es respondente (o le socket del servitor local non es "
"configurate correctemente)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Le servitor non es respondente."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
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:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Detalios…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Connexion per usatores de controlo de usator (controluser) falleva como in "
@@ -3482,9 +3483,9 @@ msgstr[0] "%1$s correspondentia in %2$s"
msgstr[1] "%1$s correspondentias in %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3538,28 +3539,28 @@ msgstr "Filtra rangos"
msgid "Search this table"
msgstr "Cerca in iste tabella"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Initio"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Previe"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Proxime"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Ultime"
@@ -3568,8 +3569,9 @@ msgstr "Ultime"
msgid "All"
msgstr "Omnes"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Numero de rangos:"
@@ -3667,16 +3669,16 @@ msgid "Query took %01.4f seconds."
msgstr "Query prendeva %01.4f secundas."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Si seligite:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3684,7 +3686,7 @@ msgstr "Si seligite:"
msgid "Check All"
msgstr "Marca omnes"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Vista pro imprimer"
@@ -3781,11 +3783,11 @@ msgstr "Information de git mancante!"
msgid "Open new phpMyAdmin window"
msgstr "Aperi nove fenestra de phpMyAdmin"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Pulsa sur le barra pro rolar al culmine del pagina"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Javascript debe esser habilitate passate iste puncto!"
@@ -3849,8 +3851,8 @@ msgstr "Le clave primari ha essite delite."
msgid "Index %s has been dropped."
msgstr "Indice %s ha essite delite."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3868,7 +3870,7 @@ msgstr ""
"removite."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Servitor"
@@ -3880,16 +3882,16 @@ msgid "View"
msgstr "Vista"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3901,10 +3903,10 @@ msgid "Structure"
msgstr "Structura"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3912,19 +3914,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Cerca"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3933,7 +3935,7 @@ msgid "Insert"
msgstr "Inserta"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3942,21 +3944,21 @@ msgid "Privileges"
msgstr "Permissiones"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operationes"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Traciamento"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3973,16 +3975,16 @@ msgstr "Triggers"
msgid "Database seems to be empty!"
msgstr "Le base de datos sembla esser vacue!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Query"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Routines"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3990,16 +3992,16 @@ msgstr "Routines"
msgid "Events"
msgstr "Eventos"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Designator"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Columnas central"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4007,38 +4009,38 @@ msgstr "Columnas central"
msgid "Databases"
msgstr "Base de datos"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Usatores"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Registro binari"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replication"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variabiles"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Insimul de characteres"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Plugins"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Motores"
@@ -4063,7 +4065,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d rango insertate."
msgstr[1] "%1$d rangos insertate."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4743,12 +4745,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Un enumeration, seligite ex le lista de valores definite"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Dimension maxime: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4759,121 +4761,117 @@ msgstr "Dimension maxime: %s%s"
msgid "MySQL said: "
msgstr "Message de MySQL: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Explica SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Non explica SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Sin codice PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Crea codice PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Modifica in linea (inline)"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y a %I:%M %p"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dies, %s horas, %s minutas e %s secundas"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Parametro mancante:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Salta al base de datos \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Le functionalitate %s es influentiate per un error cognoscite, tu vide %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Pulsa pro alternar"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Cerca in tu computator:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Selige ex le directorio de incargamento de servitor web %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
"Le directorio que tu fixava pro le travalio de incargar non pote esser "
"attingite."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Il non ha alcun file de incargar!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Vacua"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Executa"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Imprime"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Creation"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Ultime actualisation"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Ultime controlo"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Initia rango:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Cerca:"
@@ -4896,13 +4894,13 @@ msgstr "Usa iste valor"
msgid "Rows"
msgstr "Rangos"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5327,7 +5325,7 @@ msgid "Set value: %s"
msgstr "Fixa valor: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Restabili valor predefinite"
@@ -6083,10 +6081,10 @@ msgstr "Personalisa modo de navigation."
msgid "Customize default options."
msgstr "Personalisa optiones predefinite."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6567,7 +6565,7 @@ 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:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Usatores non pote fixar un valor major"
@@ -6786,36 +6784,44 @@ msgstr "Istos es le ligamines pro Modificar, Copiar e Deler."
msgid "Where to show the table row links"
msgstr "Ubi monstrar le ligamines de rango de tabellas"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Ordine natural"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Usa solo icones, solmente texto o ambes."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Barra de navigation de tabella"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "Buffering de exito de GZip"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6823,19 +6829,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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Modo de ordinar predefinite"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Usa connexiones persistente per base de datos de MySQL."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Connexiones persistente"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6845,11 +6851,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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Tabellas de immagazinage de configuration de phpMyAdmin es mancante"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6857,11 +6863,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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Aviso de differentia de Servitor/Bibliotheca"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6869,27 +6875,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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Aviso de parola reservate de MySQL"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Como monstrar le schedas de menu"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Comom monstrar varie ligamines de action"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
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:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Protege columnas binari"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6900,107 +6906,107 @@ msgstr ""
"utilisa functiones JS pro monstrar le chronologia de query (perdite quando "
"on claude le fenestra)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Historia permanente de query"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Quante queries es mantenite in historia."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Longitude de historia de query"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Motor de recodificar"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Memora ordine de tabellas"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
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:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Modo de ordinar predefinite per le clave primari"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
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:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Repite capites"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Action discatenante modifica de grillia"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Monstra de modo relational"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "Optiones pro monstrar"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
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:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Directorio ubi exportationes pote esser salveguardate sur le servitor."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Salveguarda dossier"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Lassa vacue si non usate."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Ordine de autorisation o permission de hospite"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Lassa vacue pro definition."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Regulas de autorisation o permission de hospite"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Permitte accessos sin un contrasigno"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Permitte accesso de nivello root (radice)"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Fuso horari de session"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -7008,17 +7014,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:569
+#: libraries/config/messages.inc.php:571
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:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "Sphera HTTP"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7028,19 +7034,19 @@ msgstr ""
"hardware authentication[/a] (non locate in tu radice de documento; "
"suggerite: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "File de configuration de SweKey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Methodo de authentication de usar."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Typo de authentication"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7048,11 +7054,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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Tabella de marcatores de libro"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7060,31 +7066,31 @@ msgstr ""
"Lassa vacue pro nulle commentos/typos mime de columna, proponite: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Tabella de information de columna"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Comprime connexion a servitor MySQL."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Comprime connexion"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Typo de connexion"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Contrasigno de usator de controlo"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7093,11 +7099,11 @@ msgstr ""
"information disponibile sur [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Usator de controlo"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7105,11 +7111,11 @@ msgstr ""
"Un hospite alternative pro mantener le configuration de immagazinage: lassa "
"vacue pro usar un hopite ja definite."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Hospite de controlo"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7119,15 +7125,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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Porto de controlo"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Cela base de datos coincidente con le expression regular (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7135,15 +7141,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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Dishabilita uso de INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Cela base de datos"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7151,23 +7157,23 @@ msgstr ""
"Lassa vacue pro nulle supporto de historia de query SQL, proponite: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Tabella de chronologia de query de SQL"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Nomine de hospite ubi le servitor de MySQL es executante."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Nomine de hospite servitor"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL de logout (abandono)"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7175,15 +7181,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:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Maxime numero de preferentias de immagazinar"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "Tabella de cercas salveguardate de QBE"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7191,11 +7197,11 @@ msgstr ""
"Lassa vacue pro nulle supporto de cercas QBE salveguardate, proponite: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Tabella central de columnas"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7203,15 +7209,15 @@ msgstr ""
"Lassa vacue pro necun supporto central de columnas, proponite: "
"[kbd]pma__central_columns[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Essaya connecter sin contrasigno."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Connecte sin contrasigno"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7221,30 +7227,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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Monstra solmente base de datos ab le lista"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Lassa vacue si non es usante config auth."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Contrasigno pro config auth"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "Schema PDF: tabella de paginas"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7255,22 +7261,22 @@ msgstr ""
"information complete. Lassa vacue pro nulle supporto. Suggerite: "
"[kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nomine de base de datos"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Porto de servitor"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7278,11 +7284,11 @@ msgstr ""
"Lassa vacue pro necun \"persistente\" recentemente usava tabellas trans "
"sessiones, proponite: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Tabella usate recentemente"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7290,11 +7296,11 @@ msgstr ""
"Lassa vacue pro necun \"persistente\" tabellas favorite trans sessiones, "
"proponite: [kbd]pma__favorite[/kbd]."
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Tabellas favorite"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7302,11 +7308,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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Tabella de relation"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7314,33 +7320,33 @@ msgstr ""
"Vide [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]typos de "
"authentication[/a] pro un exemplo."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Nomine de session de signon"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "URL de signon"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Socket del servitor"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Habilita SSL pro le connexion a servitor MySQL."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Usa SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7348,11 +7354,11 @@ msgstr ""
"Lassa vacue pro necun supporto de schema PDF, proponite: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Designator e Schema PDF: coordinatas de tabella"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7360,11 +7366,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:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Monstra tabella de columnas"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7372,11 +7378,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:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Tabella de preferentias de UI (Interfacie usator)"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7384,11 +7390,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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Adde DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7396,11 +7402,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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Adde DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7408,21 +7414,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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Adde DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
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:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Declarationes de traciar"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7430,11 +7436,11 @@ msgstr ""
"Lassa vacue pro necun supporto de traciar query SQL, proponite: "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Tabella pro traciar le query SQL"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7442,11 +7448,11 @@ msgstr ""
"Si le mechanismo de traciar crea automaticamente versiones pro tabellas e "
"vistas."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Crea automaticamente versiones"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7454,11 +7460,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:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Tabella de immagazinage de preferentias de usator"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7469,11 +7475,11 @@ msgstr ""
"on lassa un de lor vacue on dishabilitara iste characteristica, suggerite: "
"[kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Tabula de usatores"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7484,11 +7490,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:740
msgid "User groups table"
msgstr "Tabella de gruppos de usator"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7496,15 +7502,15 @@ msgstr ""
"Lassa vacue pro dishabilitar characteristica de celar e monstrar elementos "
"de navigation, proponite: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Tabella de elementos de navigation celate"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Usator pro config auth"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7512,21 +7518,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:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Nomine verbose de iste servitor"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Permitte monstrar omne rangos"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7537,56 +7543,56 @@ msgstr ""
"fortemente in le file de configuration; isto non limita le habilitate de "
"executar directemente le mesme commando."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Monstra modulo de modification de contrasigno"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Monstra modulo pro crear base de datos"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
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:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr "Monstra le commentos de tabella"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
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:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Monstra marca de tempore de creation"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
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:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Monstra marca de tempore de ultime actualisation"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
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:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Monstra marca de tempore de ultime verifica"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7594,27 +7600,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:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Monstra typos de campo"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
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:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Monstra campos de function"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Si monstrar o celar adjutas."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Monstra adjuta"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7622,56 +7628,56 @@ msgstr ""
"Monstra ligamine a exito [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a] ."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Monstra un ligamine a phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Monstra information detaliate del servitor MySQL"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
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:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Monstra queries de SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
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:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Cela quadro de query"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Monstra statisticas"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
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:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Ignora tabellas blocate"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7679,11 +7685,11 @@ msgstr ""
"Dishabilita le aviso predefinite que es monstrate sur le pagina principal "
"si on releva Suhosin."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Aviso de Suhosin"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 "
@@ -7693,11 +7699,11 @@ msgstr ""
"le valor de le arrangiamento de PHP session.gc_maxlifetime es minor que le "
"valor de `LoginCookieValidity`."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "Avis de validitate de cookie de authentication de accesso"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7705,11 +7711,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:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Columnas de area de texto"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7717,31 +7723,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:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Rangos de area de texto"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
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:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Titulo de fenestra de navigation quando nihil es seligite."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Titulo predefinite"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
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:795
+#: libraries/config/messages.inc.php:797
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:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7753,27 +7759,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:798
+#: libraries/config/messages.inc.php:800
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:799
+#: libraries/config/messages.inc.php:801
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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Directorio de incargar"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Permitte cerca intra le integre base de datos."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Usa cerca de base de datos"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7781,28 +7787,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:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Habilita le scheda del Disveloppator in preferentias"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Verifica le ultime version"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7814,11 +7820,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:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Url de proxy"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7829,19 +7835,19 @@ msgstr ""
"le Authentication Basic. Necun altere typos de authentication nunc es "
"supportate."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Nomine de usator de proxy"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "Le contrasigno per authenticar se con le proxy."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Contrasigno de proxy"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7849,35 +7855,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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
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:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Clave public pro reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
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:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Clave private pro reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
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:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Invia reportos de errores"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7885,11 +7891,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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr "Inserta queries de executar in console"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7897,7 +7903,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:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Habilita modo de Configuration Zero"
@@ -7923,44 +7929,44 @@ msgstr "Authentication via HTTP"
msgid "Signon authentication"
msgstr "Authentication via signon"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV usante LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Folio de computo (SpreadSheet) de OpenDocument"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Rapide"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Personalisate"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Optiones de exportation de base de datos"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV pro datos MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Texto OpenDocument"
@@ -13394,15 +13400,31 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Selection currente non contine un unic columna. Functionalitates ligate al "
"modificar grillia, modificar, copiar, marcar, deler non es disponibile."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Selection currente non contine un unic columna. Functionalitates ligate al "
+"modificar grillia, modificar, copiar, marcar, deler non es disponibile."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -14610,6 +14632,10 @@ msgstr "Commento:"
msgid "Drag to reorder"
msgstr "Trahe pro reordinar"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Initia rango:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Selige columnas (al minus uno):"
diff --git a/po/id.po b/po/id.po
index 1503f58240..919ab88a4d 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-06-17 06:05+0200\n"
"Last-Translator: Tommy Surbakti \n"
"Language-Team: Indonesian %s:"
msgstr "Kueri SQL pada basis data %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Kirim Kueri"
@@ -3434,7 +3435,7 @@ msgstr "Perbarui bookmark"
msgid "Delete bookmark"
msgstr "Hapus bookmark"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3442,19 +3443,19 @@ msgstr ""
"Server tidak merespon (atau soket server lokal tidak dikonfigurasi dengan "
"benar)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Server tidak merespon."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Harap periksa hak akses direktori basis data."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Rincian…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Koneksi untuk controluser yang di definisikan di konfigurasi Anda gagal."
@@ -3493,9 +3494,9 @@ msgid_plural "%1$s matches in %2$s"
msgstr[0] "%1$s cocok dengan %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3549,28 +3550,28 @@ msgstr "Saring baris"
msgid "Search this table"
msgstr "Cari di tabel ini"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Awal"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Sebelumnya"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Berikutnya"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Akhir"
@@ -3579,8 +3580,9 @@ msgstr "Akhir"
msgid "All"
msgstr "Semua"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Jumlah baris:"
@@ -3678,16 +3680,16 @@ msgid "Query took %01.4f seconds."
msgstr "Pencarian dilakukan dalam %01.4f detik."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Dengan pilihan:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3695,7 +3697,7 @@ msgstr "Dengan pilihan:"
msgid "Check All"
msgstr "Pilih Semua"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Tampilan cetak"
@@ -3791,11 +3793,11 @@ msgstr "Informasi Git hilang!"
msgid "Open new phpMyAdmin window"
msgstr "Buka jendela phpMyAdmin baru"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Klik pada bar untuk menggulir ke atas halaman"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Javascript harus diaktifkan lewat point ini!"
@@ -3859,8 +3861,8 @@ msgstr "Kunci primer telah dihapus."
msgid "Index %s has been dropped."
msgstr "Indeks %s telah dihapus."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3878,7 +3880,7 @@ msgstr ""
"untuk dibuang."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -3890,16 +3892,16 @@ msgid "View"
msgstr "Gambarkan"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3911,10 +3913,10 @@ msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3922,19 +3924,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Cari"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3943,7 +3945,7 @@ msgid "Insert"
msgstr "Tambahkan"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3952,21 +3954,21 @@ msgid "Privileges"
msgstr "Hak Akses"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operasi"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Pelacakan"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3983,16 +3985,16 @@ msgstr "Trigger"
msgid "Database seems to be empty!"
msgstr "Basis data kelihatannya kosong!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Kueri"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Routine"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4000,16 +4002,16 @@ msgstr "Routine"
msgid "Events"
msgstr "Event"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Desainer"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Tengah kolom"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4017,38 +4019,38 @@ msgstr "Tengah kolom"
msgid "Databases"
msgstr "Basis data"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Pengguna"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Log biner"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replikasi"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variabel"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Set Karakter"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Plugin"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Mesin"
@@ -4076,7 +4078,7 @@ msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d baris ditambahkan."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4745,12 +4747,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Sebuah pencacahan, dipilih dari daftar nilai yang ditetapkan"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Batas ukuran: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4761,120 +4763,116 @@ msgstr "Batas ukuran: %s%s"
msgid "MySQL said: "
msgstr "MySQL menyatakan: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Jelaskan SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Lewati Penjelasan SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Kode PHP tidak ditemukan"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Buat kode PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Edit dikotak"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Minggu"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y pada %H.%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s hari, %s jam, %s menit dan %s detik"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Parameter yang hilang:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Langsung ke basis data \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Fungsionalitas %s dipengaruhi oleh suatu bug, lihat %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Klik untuk beralih"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Telusuri komputer Anda:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Pilih dari direktori unggah %s pada web server:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
"Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Tidak ada arsip untuk diunggah!"
# Imperative menu
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Kosongkan"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Eksekusi"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Cetak"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Pembuatan"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Pembaruan terakhir"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Pemeriksaan terakhir"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Awal baris:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Cari:"
@@ -4897,13 +4895,13 @@ msgstr "Gunakan nilai ini"
msgid "Rows"
msgstr "Baris"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5348,7 +5346,7 @@ msgid "Set value: %s"
msgstr "Tetapkan nilai: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Kembalikan nilai bawaan"
@@ -6137,10 +6135,10 @@ msgstr "Atur mode jelajah."
msgid "Customize default options."
msgstr "Sesuaikan opsi bawaan."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "Data CSV"
@@ -6626,7 +6624,7 @@ 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:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Pengguna tidak dapat menetapkan nilai yang lebih tinggi"
@@ -6857,34 +6855,42 @@ msgstr "Berikut ini adalah tautan Edit, Salin, dan Hapus."
msgid "Where to show the table row links"
msgstr "Tempat menampilkan tautan baris tabel"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Urutan alami"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Gunakan hanya ikon, hanya teks, atau keduanya."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Bar tabel navigasi"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "Penyanggaan keluaran GZip"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6892,19 +6898,19 @@ msgstr ""
"[kbd]SMART[/kbd] - yaitu urutan untuk kolom jenis TIME, DATE, DATETIME dan "
"TIMESTAMP, urutan ascending dan sebaliknya."
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Urutan bawaan"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Gunakan koneksi persisten ke basis data MySQL."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Koneksi persisten"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6914,11 +6920,11 @@ msgstr ""
"jika kebutuhan tabel untuk penyimpanan konfigurasi phpMyAdmin tidak "
"ditemukan."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6926,11 +6932,11 @@ msgstr ""
"Nonaktifkan peringatan bawaan yang ditampilkan ketika terdeteksi perbedaan "
"antara pustaka MySQL dan server."
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Server/library perbedaan peringatan"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6938,27 +6944,27 @@ msgstr ""
"Nonaktifkan peringatan bawaan yang ditampilkan sewaktu nama kolom dalam "
"tabel tabel telah dipesan oleh MySQL."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Peringatan! kata telah digunakan MySQL"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Atur tampilan tab menu"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Bagaimana menampilkan berbagai link tindakan"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Nonaktifkan pengeditan kolom BLOB dan BINARY."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Lindungi kolom biner"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6968,129 +6974,129 @@ msgstr ""
"konfigurasi phpMyAdmin). Jika dinonaktifkan, ini menggunakan JS-routines "
"untuk menampilkan riwayat query(hilang ketika jendela ditutup)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Riwayat kueri permanen"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Jumlah query yang disimpan dalam riwayat."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Panjang riwayat kueri"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Mesin pengode ulang"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Ingat urutan tabel"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
#, fuzzy
msgid "Default sort order for tables with a primary key."
msgstr "Urutan default untuk tabel dengan primary key."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Urutan bawaan"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
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:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Ulangi judul"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Pengeditan Grid: trigger action"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Kolom tampilan relasi"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "Opsi tampilan server."
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Pengeditan Grid: Simpan semua sel yang diedit sekaligus"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Direktori penyimpanan hasil ekspor di server."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Direktori penyimpanan"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Biarkan kosong jika tidak digunakan."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Urutan otorisasi inang"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Biarkan kosong untuk menggunakan bawaan."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Aturan otorisasi inang"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Izinkan masuk tanpa sandi"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Izinkan masuk root"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Nilai sesi"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
#, 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:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7100,19 +7106,19 @@ msgstr ""
"SweKey [/a](tidak terletak di document root Anda, disarankan: /etc/swekey."
"conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "Berkas config SweKey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Metode autentikasi yang dipakai."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Jenis autentikasi"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7120,11 +7126,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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Tabel markah"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7132,32 +7138,32 @@ msgstr ""
"Biarkan kosong untuk tanpa kolom komentar/mime type, saran: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Tabel informasi kolom"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Kompres koneksi ke server MySQL."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Pampatkan koneksi"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Jenis koneksi"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Sandi pengguna pengendali"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7166,11 +7172,11 @@ msgstr ""
"informasi lebih lanjut yang tersedia pada [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Pengguna pengendali"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7178,11 +7184,11 @@ msgstr ""
"Sebuah host alternatif untuk memegang penyimpanan konfigurasi; biarkan "
"kosong untuk menggunakan host yang telah ditetapkan."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Inang pengendali"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7192,15 +7198,15 @@ msgstr ""
"biarkan kosong untuk menggunakan port bawaan, atau port yang telah "
"ditentukan, jika controlhost adalah host yang sama."
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Port kontrol"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Sembunyikan pencocokan ekspresi reguler database(PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7209,15 +7215,15 @@ msgstr ""
"bugs/2606/]PMA bug tracker[/a] dan [a@http://bugs.mysql.com/19588]MySQL "
"Bugs[/a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Noaktifkan penggunaan INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Sembunyikan basis data"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7225,23 +7231,23 @@ msgstr ""
"Biarkan kosong untuk tanpa dukungan riwayat kueri SQL, saran: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Tabel riwayat kueri SQL"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Nama host yang menjalankan server MySQL."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Nama inang server"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL keluar"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7249,17 +7255,17 @@ msgstr ""
"Batas jumlah preferensi tabel yang disimpan dalam database, catatan terlama "
"akan dihapus secara otomatis."
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Jumlah maksimal preferensi tabel untuk menyimpan"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "Lihat tabel status slave"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7271,13 +7277,13 @@ msgstr ""
"Biarkan kosong agar tidak mendukung skema PDF, saran: [kbd]pma__pdf_pages[/"
"kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "Kolom textarea"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7289,15 +7295,15 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Coba koneksi tanpa sandi."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Tersambung tanpa sandi"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
#, fuzzy
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
@@ -7308,30 +7314,30 @@ msgstr ""
"Anda ingin menggunakan contoh literal, yaitu gunakan [kbd]'my\\_db'[/kbd] "
"dan bukan [kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Tampilkan hanya basis data terdaftar"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Biarkan kosong jika tidak menggunakan config auth."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Sandi untuk autentikasi config"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "Skema PDF: tabel halaman"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7341,21 +7347,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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nama basis data"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
#, 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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Porta server"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7367,11 +7373,11 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Tabel yang baru digunakan"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7383,13 +7389,13 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "Tabel favorit"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7401,11 +7407,11 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Tabel relasi"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7413,35 +7419,35 @@ msgstr ""
"Untuk contoh lihat [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]authentication types[/a]."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Nama sesi Signon"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "URL Signon"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
#, 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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Socket server"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Gunakan SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7453,13 +7459,13 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "Skema PDF: koordinat tabel"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7471,11 +7477,11 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Tabel kolom tampilan"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7487,11 +7493,11 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Tabel preferensi UI"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
#, fuzzy
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
@@ -7500,11 +7506,11 @@ msgstr ""
"Apakah DATABASE DROP JIKA ada pernyataan akan ditambahkan sebagai baris "
"pertama untuk log saat membuat database."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Tambahkan DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
#, fuzzy
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
@@ -7513,11 +7519,11 @@ msgstr ""
"Apakah TABLE DROP JIKA ada pernyataan akan ditambahkan sebagai baris pertama "
"untuk log saat membuat tabel."
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Tambahkan DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
#, fuzzy
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
@@ -7526,20 +7532,20 @@ msgstr ""
"Apakah DROP sebuah VIEW JIKA ada pernyataan akan ditambahkan sebagai baris "
"pertama untuk log saat membuat tampilan."
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Tambahkan DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
#, 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:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Statement untuk dilacak"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7551,11 +7557,11 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Tabel pelacakan kueri SQL"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
#, fuzzy
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
@@ -7564,11 +7570,11 @@ msgstr ""
"Apakah mekanisme pelacakan menciptakan versi untuk tabel dan tampilan secara "
"otomatis."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Buat versi secara otomatis"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7580,11 +7586,11 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Tabel penyimpanan preferensi pengguna"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
#, fuzzy
msgid ""
"Both this table and the user groups table are required to enable the "
@@ -7595,13 +7601,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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Gunakan Tabel"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
#, fuzzy
msgid ""
"Both this table and the users table are required to enable the configurable "
@@ -7612,13 +7618,13 @@ msgstr ""
"dikonfigurasi; Meninggalkan salah satu dari mereka kosong akan menonaktifkan "
"fitur ini, disarankan: [kbd] pma__usergroups [/ kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Gunakan Host Table"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7630,16 +7636,16 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
#, fuzzy
msgid "Hidden navigation items table"
msgstr "Tersembunyi tabel item navigasi"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Pengguna autentikasi config"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7647,21 +7653,21 @@ msgstr ""
"Deskripsi server yang lebih jelas. Biarkan kosong untuk menampilkan nama "
"inang saja."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Nama deskriptif server"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
#, 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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Izinkan tampilan semua baris"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
#, fuzzy
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
@@ -7673,41 +7679,41 @@ msgstr ""
"konfigurasi; ini tidak membatasi kemampuan untuk menjalankan perintah yang "
"sama secara langsung."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Tampilkan formulir penggantian sandi"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Tampilkan formulir pembuatan basis data"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, 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:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Komentar tabel"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
#, 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:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "Tampilkan tindakan lain"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
#, fuzzy
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
@@ -7715,12 +7721,12 @@ msgstr ""
"Menampilkan atau menyembunyikan kolom menampilkan timestamp Terakhir "
"diperbaharui untuk semua tabel."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
#, fuzzy
msgid "Show Last update timestamp"
msgstr "Tampilkan pembaruan timestamp terakhir"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
#, fuzzy
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
@@ -7728,13 +7734,13 @@ msgstr ""
"Menampilkan atau menyembunyikan kolom menampilkan cek timestamp terakhir "
"untuk semua tabel."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Tampilkan status master"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
#, fuzzy
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
@@ -7743,31 +7749,31 @@ msgstr ""
"Mendefinisikan apakah atau tidak ketik ladang harus awalnya ditampilkan "
"dalam mode edit / insert."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Tampilkan jenis isian"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
#, 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:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Tampilkan isian fungsi"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
#, 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:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Tampilkan petunjuk"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -7779,15 +7785,15 @@ msgstr ""
"Tampilkan tautan untuk melihat hasil [a@http://php.net/manual/function."
"phpinfo.php]phpinfo()[/a]"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Tampilkan tautan phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Tampilkan informasi detail server MySQL"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
#, fuzzy
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
@@ -7795,11 +7801,11 @@ msgstr ""
"Mendefinisikan apakah query SQL yang dihasilkan oleh phpMyAdmin harus "
"ditampilkan."
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Tampilkan kueri SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
#, fuzzy
msgid ""
"Defines whether the query box should stay on-screen after its submission."
@@ -7807,24 +7813,24 @@ msgstr ""
"Mendefinisikan apakah kotak pertanyaan harus tinggal di layar setelah "
"penyerahan."
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 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:771
+#: libraries/config/messages.inc.php:773
#, 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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Tampilkan statistik"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
#, fuzzy
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
@@ -7832,11 +7838,11 @@ msgstr ""
"Mark menggunakan tabel dan memungkinkan untuk menampilkan database dengan "
"tabel terkunci."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Lewati tabel terkunci"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected"
msgid ""
@@ -7844,11 +7850,11 @@ msgid ""
"detected."
msgstr "Menampilkan peringatan pada halaman utama jika Suhosin terdeteksi"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Peringatan Suhosin"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7861,13 +7867,13 @@ msgstr ""
"Nonaktifkan peringatan bawaan yang ditampilkan sewaktu nama kolom dalam "
"tabel tabel telah dipesan oleh MySQL."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Validitas kuki masuk"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
@@ -7876,11 +7882,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:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Kolom textarea"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7889,35 +7895,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:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Baris textarea"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
#, 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:791
+#: libraries/config/messages.inc.php:793
#, 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:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Judul bawaan"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "Judul jendela peramban sewaktu server dipilih."
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "Judul jendela peramban ketika tabel dipilih."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
#, fuzzy
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
@@ -7930,27 +7936,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:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Daftar proksi tepercaya untuk allow/deny IP"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr "Direktori server tempat mengunggah berkas ekspor."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Direktori unggahan"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Mengizinkan pencarian terhadap seluruh basis data."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Gunakan pencarian basis data"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7958,26 +7964,26 @@ msgstr ""
"Ketika dinonaktifkan, pengguna tidak dapat mengatur pilihan apapun di bawah "
"ini, lepas centang kotak di sebelah kanan."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Aktifkan tab pengembang dalam pengaturan"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Periksa versi terbaru"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "Aktifkan pemeriksaan versi terbaru pada halaman utama phpMyAdmin."
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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,11 +7995,11 @@ msgstr ""
"jika server yang terinstal phpMyAdmin tidak memiliki akses langsung ke "
"internet. Formatnya adalah: \"hostname:portnumber\"."
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Alamat proxy"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -8003,19 +8009,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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Nama Pengguna Proxy"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "Password untuk otentikasi proxy."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Password proxy"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -8023,47 +8029,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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
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:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Kunci publik untuk reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
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:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Kunci privat untuk reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "Pilih aksi default saat mengirim laporan kesalahan."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Kirim laporan kesalahan"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "Kueri tereksekusi"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
#, fuzzy
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
@@ -8072,7 +8078,7 @@ msgstr ""
"Aktifkan mode Zero Configuration yang memungkinkan anda mengatur phpMyAdmin "
"tabel penyimpanan konfigurasi otomatis."
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8100,44 +8106,44 @@ msgstr "Autentikasi HTTP"
msgid "Signon authentication"
msgstr "Autentikasi signon"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV menggunakan LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Lembar sebar OpenDocument"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Cepat"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Kustom"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Opsi ekspor basis data"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV untuk data MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Teks OpenDocument"
@@ -14392,20 +14398,33 @@ msgstr "Menggunakan markah \"%s\" sebagai kueri penjelajahan bawaan."
msgid "Showing as PHP code"
msgstr "Tampilkan sebagai kode PHP"
-#: libraries/sql.lib.php:1765
-#, fuzzy
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
#| 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Tabel ini tidak berisi kolom yang unik. Fitur yang berhubungan dengan edit "
"grid, kotak centang, Edit, Copy dan Delete link mungkin tidak bekerja "
"setelah disimpan."
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Tabel ini tidak berisi kolom yang unik. Fitur yang berhubungan dengan edit "
+"grid, kotak centang, Edit, Copy dan Delete link mungkin tidak bekerja "
+"setelah disimpan."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`"
@@ -15806,6 +15825,10 @@ msgstr "Komentar:"
msgid "Drag to reorder"
msgstr "Seret untuk mengubah urutan"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Awal baris:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Pilih kolom (paling tidak satu):"
diff --git a/po/it.po b/po/it.po
index 5a0e904c0a..e16cdd597d 100644
--- a/po/it.po
+++ b/po/it.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-06-11 18:16+0200\n"
"Last-Translator: Stefano Martinelli \n"
"Language-Team: Italian %s:"
msgstr "SQL-query sul database %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Invia Query"
@@ -3434,7 +3435,7 @@ msgstr "Aggiorna segnalibro"
msgid "Delete bookmark"
msgstr "Elimina segnalibro"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3442,19 +3443,19 @@ msgstr ""
"Il server non risponde (o il socket del server locale MySQL non è "
"correttamente configurato)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Il server non risponde."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Controllate i privilegi della cartella che contiene il database."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Dettagli…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Connessione per controluser come definito nella configurazione fallita."
@@ -3495,9 +3496,9 @@ msgstr[0] "%1$s corrispondenza in %2$s"
msgstr[1] "%1$s corrispondenze in %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3551,28 +3552,28 @@ msgstr "Filtra righe"
msgid "Search this table"
msgstr "Cerca nella tabella"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Inizio"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Precedente"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Prossima"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Ultima"
@@ -3581,8 +3582,9 @@ msgstr "Ultima"
msgid "All"
msgstr "Tutti"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Numero di righe:"
@@ -3680,16 +3682,16 @@ msgid "Query took %01.4f seconds."
msgstr "La query ha impiegato %01.4f secondi."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Se selezionati:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3697,7 +3699,7 @@ msgstr "Se selezionati:"
msgid "Check All"
msgstr "Seleziona tutti"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Visualizza per stampa"
@@ -3792,11 +3794,11 @@ msgstr "Mancano le informazioni relative a Git!"
msgid "Open new phpMyAdmin window"
msgstr "Apri una nuova finestra di PhpMyAdmin"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Clicca sulla barra per scorrere fino all'inizio della pagina"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Da qui in poi, JavaScript deve essere abilitato!"
@@ -3860,8 +3862,8 @@ msgstr "La chiave primaria è stata eliminata."
msgid "Index %s has been dropped."
msgstr "L'indice %s è stato eliminato."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3879,7 +3881,7 @@ msgstr ""
"possibilmente, essere rimosso."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -3891,16 +3893,16 @@ msgid "View"
msgstr "Vista"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3912,10 +3914,10 @@ msgid "Structure"
msgstr "Struttura"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3923,19 +3925,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Cerca"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3944,7 +3946,7 @@ msgid "Insert"
msgstr "Inserisci"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3953,21 +3955,21 @@ msgid "Privileges"
msgstr "Privilegi"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operazioni"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Monitoraggio"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3984,16 +3986,16 @@ msgstr "Trigger"
msgid "Database seems to be empty!"
msgstr "Il database sembra essere vuoto!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Query da esempio"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Routine"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4001,16 +4003,16 @@ msgstr "Routine"
msgid "Events"
msgstr "Eventi"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Designer"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Colonne centrali"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4018,38 +4020,38 @@ msgstr "Colonne centrali"
msgid "Databases"
msgstr "Database"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Utenti"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Log binario"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replicazione"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variabili"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Set di caratteri"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Plugin"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Motori"
@@ -4074,7 +4076,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d riga inserita."
msgstr[1] "%1$d righe inserite."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4754,12 +4756,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Una enumerazione, scelta tra una lista di valori definiti"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Dimensione massima: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4770,118 +4772,114 @@ msgstr "Dimensione massima: %s%s"
msgid "MySQL said: "
msgstr "Messaggio di MySQL: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Spiega SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Non Spiegare SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr "Spiegazione Analisi a %s"
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Senza codice PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Crea il codice PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Modifica inline"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y alle %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s giorni, %s ore, %s minuti e %s secondi"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Parametro mancante:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Passa al database \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "La %s funzionalità è affetta da un bug noto, vedi %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Clicca per alternare"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Cerca sul tuo computer:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Selezionare dalla cartella di upload del server web %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "La directory impostata per l'upload non può essere trovata."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Nessun file da caricare!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Svuota"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Esegui"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Stampa"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Creazione"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Ultimo cambiamento"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Ultimo controllo"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Riga iniziale:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Cerca:"
@@ -4904,13 +4902,13 @@ msgstr "Usa questo valore"
msgid "Rows"
msgstr "Righe"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5333,7 +5331,7 @@ msgid "Set value: %s"
msgstr "Imposta valore: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Ripristinare valori predefiniti"
@@ -6091,10 +6089,10 @@ msgstr "Personalizza modalità di navigazione."
msgid "Customize default options."
msgstr "Personalizza le opzioni predefinite."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6580,7 +6578,7 @@ 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:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Gli utenti non possono impostare un valore maggiore"
@@ -6802,35 +6800,43 @@ msgstr "Questi sono i collegamenti per Modifica, Copia ed Elimina."
msgid "Where to show the table row links"
msgstr "Dove mostrare i collegamenti per le righe delle tabelle"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Ordine naturale"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Usa solo icone, solo testo o entrambi."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Barra di navigazione delle tabelle"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "utilizza il buffer di uscita GZip"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6838,19 +6844,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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Ordinamento predefinito"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Usa connessioni persistenti per i database MySQL."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Connessione persistente"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6860,11 +6866,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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Mancano le tabelle di configurazione di phpMyAdmin"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6872,11 +6878,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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Avviso differenza Server/libreria"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6885,27 +6891,27 @@ msgstr ""
"Struttura se una tabella contiene campi i cui nomi sono parole riservate in "
"MySQL."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Avviso parola riservata in MySQL"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Come visualizzare le linguette dei menu"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Come visualizzare i collegamenti a diverse azioni"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Disabilita l'opzione di modifica dei campi BLOB e BINARY."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Proteggi campi binari"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6916,110 +6922,110 @@ msgstr ""
"disabilitata, questa utilizzera funzioni JS per visualizzare la cronologia "
"delle query (persa alla chiusura della finstra)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Cronologia delle query permanente"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Numero di query conservate in cronologia."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Lunghezza per la cronologia delle query"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Motore di registrazione"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Ricorda l'ordine delle tabelle"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
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:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Ordinamento predefinito per la chiave primaria"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
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:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Ripeti intestazioni"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Modifica griglia: azione di innesco"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Visualizzazione relazionale"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "Per le Opzioni di visualizzazione"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Modifica griglia: salva all'istante tutte le celle modificate"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
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:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Salva cartella"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Lasciare vuoto se non usato."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Ordine dei permessi del host"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Lasciare vuoto per i valori predefiniti."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Regole dei permessi del host"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Consenti login senza la parola chiave"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Consenti login per utenti root"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Timezone della sessione"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -7027,16 +7033,16 @@ msgstr ""
"Imposta la timezone effettiva, potrebbe essere diversa da quella del tuo "
"server database"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
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:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "Realm HTTP"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7046,19 +7052,19 @@ msgstr ""
"com]autenticazione con hardware SweKey[/a] (non salvata nella cartella "
"document root; percorso consigliato: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "File di configurazione SweKey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Metodo di autenticazione da usare."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Tipo di autenticazione"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7066,11 +7072,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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Tabella dei segnalibri"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7078,31 +7084,31 @@ msgstr ""
"Lascia vuoto per disattivare i commenti/tipi mime per i campi, consigliato: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Tabella delle informazioni sui campi"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Comprimi la connessione al server MySQL."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Comprimi la connessione"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Tipo di connessione"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Parola chiave per l'utente di controllo"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7111,11 +7117,11 @@ msgstr ""
"ulteriori informazioni disponibili nella [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Utente di controllo"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7123,11 +7129,11 @@ msgstr ""
"Un host alternativo per memorizzare la configurazione; lasciare in bianco "
"per utilizzare l'host già definito."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Host di controllo"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7137,15 +7143,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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Porta di controllo"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Nascondi i database corrispondenti all'espressione regolare (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7154,15 +7160,15 @@ msgstr ""
"bugs/2606/]PMA bug tracker[/a] e [a@http://bugs.mysql.com/19588]MySQL Bugs[/"
"a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Disabilita l'utilizzo di INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Nascondi i database"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7170,23 +7176,23 @@ msgstr ""
"Lascia vuoto per disabilitare il supporto per la cronologia delle query SQL, "
"consigliato: [kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Tabella di cronologia delle query SQL"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Il nome dell'host su cui è in esecuzione il server MySQL."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Nome host del server"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "Url di logout"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7194,15 +7200,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:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Numero massimo di preferenze di tabella da memorizzare"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "Tabella delle ricerche QBE (Query By Example) salvate"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7210,11 +7216,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:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Tabella dei campi centrali"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7222,15 +7228,15 @@ msgstr ""
"Lascia vuoto per disabilitare il supporto dei campi centrali, consigliato: "
"[kbd]pma__central_columns[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Prova a connetterti senza password."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Effettua connessione senza la parola chiave"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7240,30 +7246,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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Mostra solo i database dalla lista"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Lascia vuoto se non è utilizzato config auth."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Parola chiave per config auth"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "Schema PDF: tabella delle pagine"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7273,22 +7279,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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nome del database"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Porta del server"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7297,11 +7303,11 @@ msgstr ""
"recente tra una sessione di lavoro e l'altra, consigliato: [kbd]pma__recent[/"
"kbd]."
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Tabella utilizzata recentemente"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7309,11 +7315,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:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Tabelle preferite"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7321,11 +7327,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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Tabella relazionale"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7333,33 +7339,33 @@ msgstr ""
"Vedi [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipi di "
"autenticazione[/a] per un esempio."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Nome della sessione di signon"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "L'URL di signon"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Socket del server"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Abilita SSL per la connessione al server MySQL."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Utilizza SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7367,11 +7373,11 @@ msgstr ""
"Lascia vuoto per disabilitare il supporto dello schema PDF, consigliato: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Designer e schema PDF: coordinate delle tabelle"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7379,11 +7385,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:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Visualizza i campi della tabella"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7392,11 +7398,11 @@ msgstr ""
"dell'interfaccia utenti tra le sessioni di lavoro, consigliato: "
"[kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Tabella di memorizzazione delle preferenze dell'interfaccia utente"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7404,11 +7410,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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Aggiungi DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7416,11 +7422,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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Aggiungi DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7428,21 +7434,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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Aggiungi DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
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:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Istruzioni da monitorare"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7450,11 +7456,11 @@ msgstr ""
"Lascia vuoto per disabilitare il supporto per il monitoraggio delle query "
"SQL, consigliato: [kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Tabella de monitoraggio delle query SQL"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7462,11 +7468,11 @@ msgstr ""
"Se il meccanismo di monitoraggio crea versioni per tabelle e viste "
"automaticamente."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Crea versioni automaticamente"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7474,11 +7480,11 @@ msgstr ""
"Lascia vuoto per disabilitare la memorizzazione delle preferenze degli "
"utenti nel database, consigliato: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Tabella di memorizzazione delle preferenze degli utenti"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7488,11 +7494,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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Tabella utenti"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7502,11 +7508,11 @@ msgstr ""
"funzione menu configurabile; lasciando uno dei due vuoto si disattiva questa "
"funzione, suggerito: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Tabella gruppi utenti"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7514,15 +7520,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:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Tabella dei dati di navigazione nascosta"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Utente per il config auth"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7530,19 +7536,19 @@ msgstr ""
"Una descrizione di facile utilizzo di questo server. Lascia vuoto per "
"visualizzare il nome host, invece."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Nome completo di questo server"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Consenti la visualizzazione di tutte le righe"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7553,56 +7559,56 @@ msgstr ""
"codificata nel file di configurazione; questo non limita la possibilità di "
"eseguire lo stesso comando direttamente."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Mostra il modulo di modifica della parola chiave"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Mostra il modulo di creazione dei database"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
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:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr "Mostra i commenti alla tabella"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
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:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Mostra la marca temporale di Creazione"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
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:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Mostra la marcatura temporale (timestamp) dell'Ultimo aggiornamento"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
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:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Mostra la marca temporale dell'ultimo controllo"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7610,28 +7616,28 @@ msgstr ""
"Stabilisce se i tipi dei campi dovrebbero essere visualizzati inizialmente "
"nella modalitá di inserimento/modifica."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Mostra i tipi di campi"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
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:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Mostra i campi delle funzioni"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Se mostrare il suggerimento o meno."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Mostra suggerimento"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7639,58 +7645,58 @@ msgstr ""
"Mostra un collegamento all'output di [a@http://php.net/manual/function."
"phpinfo.php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Mostra un collegamento a phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Mostra informazioni dettagliate del server MySQL"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
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:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Mostra query SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
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:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Nascondi riquadro query SQL"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Mostra statistiche"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
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:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Ignora le tabelle bloccate"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7698,11 +7704,11 @@ msgstr ""
"Disabilita l'avviso predefinito che è visualizzato sulla pagina principale "
"se viene rilevato Suhosin."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Avviso Suhosin"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 "
@@ -7712,11 +7718,11 @@ msgstr ""
"principale se il valore del parametro PHP session.gc_maxlifetime è inferiore "
"al valore di `LoginCookieValidity`."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "Avviso validità per il cookie di login"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7724,11 +7730,11 @@ msgstr ""
"Dimensione TextArea (colonne) in modalità di modifica, questo valore verrà "
"sottolineato per SQL query textareas (* 2)."
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Campi di aree di testo"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7736,31 +7742,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:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Righe nelle aree di testo"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
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:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Titolo della finestra del browser quando niente è selezionato."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Titolo Predefinito"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
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:795
+#: libraries/config/messages.inc.php:797
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:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7772,28 +7778,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:798
+#: libraries/config/messages.inc.php:800
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:799
+#: libraries/config/messages.inc.php:801
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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Cartella di upload"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Consenti la ricerca all'interno di un intero database."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Utilizza la ricerca dei database"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7801,28 +7807,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:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Abilita la tabulazione per Sviluppatori nelle impostazioni"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Controlla l'ultima versione"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7834,11 +7840,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:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Url Proxy"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7849,19 +7855,19 @@ msgstr ""
"utente, verrà eseguita l'autenticazione di base. Nessun altro tipo di "
"autenticazione è attualmente supportato."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Nome utente Proxy"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "La password per l'autenticazione con il proxy."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Password Proxy"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7869,36 +7875,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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
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:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Chiave pubblica per reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
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:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Chiave privata per reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
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:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Invia rapporti di errore"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7906,11 +7912,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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr "INVIO esegue query in console"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7918,7 +7924,7 @@ msgstr ""
"Abilitare la modalità configurazione Zero che consente di configurare "
"automaticamente tabelle di memorizzazione di phpMyAdmin."
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Abilita la modalità Zero Configuration"
@@ -7944,44 +7950,44 @@ msgstr "Autenticazione HTTP"
msgid "Signon authentication"
msgstr "Autenticazione via signon"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV usando LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Foglio di calcolo OpenDocument"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Veloce"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Personalizzazato"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Opzioni di esportazione per database"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV per dati MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Testo OpenDocument"
@@ -13789,15 +13795,31 @@ msgstr "Usa il segnalibro \"%s\" come la query di navigazione predefinita."
msgid "Showing as PHP code"
msgstr "Visualizzo comel codice PHP"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"La selezione corrente non contiene un campo unico. Modifica griglia, "
"checkbox, Modifica, Copia ed Elimina potrebbero non essere disponibili."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"La selezione corrente non contiene un campo unico. Modifica griglia, "
+"checkbox, Modifica, Copia ed Elimina potrebbero non essere disponibili."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemi con gli indici della tabella `%s`"
@@ -15064,6 +15086,10 @@ msgstr "Commento:"
msgid "Drag to reorder"
msgstr "Trascina per riordinare"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Riga iniziale:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Seleziona campi (almeno uno):"
diff --git a/po/ja.po b/po/ja.po
index 3af8e73174..8d8a3deb90 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-03-28 04:08+0200\n"
"Last-Translator: Hiroshi Chiyokawa \n"
"Language-Team: Japanese %s:"
msgstr "データベース %s のSQL:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "クエリを実行する"
@@ -3562,7 +3563,7 @@ msgstr "表示中のブックマーク"
msgid "Delete bookmark"
msgstr "リレーションを削除"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3570,20 +3571,20 @@ msgstr ""
"サーバが応答しません (あるいはローカルサーバのソケットが正しく設定されていま"
"せん)。"
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "サーバが応答しません。"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
"データベースを含んでいるディレクトリのパーミッションを確認してください。"
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "詳細…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"設定ファイルに定義されている管理ユーザ(controluser)での接続に失敗しました。"
@@ -3624,9 +3625,9 @@ msgid_plural "%1$s matches in %2$s"
msgstr[0] "%1$s 件 (テーブル %2$s)"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3684,28 +3685,28 @@ msgstr "フィルタ"
msgid "Search this table"
msgstr "データベース内検索"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "先頭"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "前へ"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "次へ"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "最後"
@@ -3714,8 +3715,9 @@ msgstr "最後"
msgid "All"
msgstr "全部"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "行数:"
@@ -3820,16 +3822,16 @@ msgid "Query took %01.4f seconds."
msgstr "クエリの実行時間 %01.4f 秒"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "チェックしたものを:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3837,7 +3839,7 @@ msgstr "チェックしたものを:"
msgid "Check All"
msgstr "すべてチェックする"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "印刷用画面"
@@ -3946,11 +3948,11 @@ msgstr "バージョン情報"
msgid "Open new phpMyAdmin window"
msgstr "別ウィンドウで開く"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Javascript must be enabled past this point"
@@ -4016,8 +4018,8 @@ msgstr "主キーを削除しました。"
msgid "Index %s has been dropped."
msgstr "インデックス %s を削除しました。"
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4035,7 +4037,7 @@ msgstr ""
"れません。"
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "サーバ"
@@ -4047,16 +4049,16 @@ msgid "View"
msgstr "ビュー"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4068,10 +4070,10 @@ msgid "Structure"
msgstr "構造"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4079,19 +4081,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "検索"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4100,7 +4102,7 @@ msgid "Insert"
msgstr "挿入"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4109,21 +4111,21 @@ msgid "Privileges"
msgstr "特権"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "操作"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "SQL コマンドの追跡"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4140,16 +4142,16 @@ msgstr "トリガ"
msgid "Database seems to be empty!"
msgstr "データベースが空のようです!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "クエリ"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "ルーチン"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4157,18 +4159,18 @@ msgstr "ルーチン"
msgid "Events"
msgstr "イベント"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "デザイナ"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns"
msgstr "textarea の 1 行の文字数"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4176,38 +4178,38 @@ msgstr "textarea の 1 行の文字数"
msgid "Databases"
msgstr "データベース"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "ユーザ"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "バイナリログ"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "レプリケーション"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "変数"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "文字セット"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "プラグイン"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "エンジン"
@@ -4229,7 +4231,7 @@ msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d 行挿入しました。"
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4926,12 +4928,12 @@ msgstr "可変長文字列 (長さは 0-65,535)、文字列の比較はバイナ
msgid "An enumeration, chosen from the list of defined values"
msgstr "列挙型、定義しておいた列挙リストより値を取ることができます"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "最長: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4942,28 +4944,28 @@ msgstr "最長: %s%s"
msgid "MySQL said: "
msgstr "MySQL のメッセージ: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "EXPLAIN で確認"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "SQL の EXPLAIN 解析をスキップ"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "PHP コードを省略"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP コードの作成"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
@@ -4971,95 +4973,89 @@ msgid "Edit inline"
msgstr "インデックスを編集する"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "日"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y 年 %B %d 日 %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s 日 %s 時間 %s 分 %s 秒"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "パラメータがありません:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "データベース「%s」に移動します。"
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s の機能には既知のバグがあります。%s をご覧ください"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "クリックでオン/オフ切り替え"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "アップロードファイル:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "ウェブサーバ上のアップロードディレクトリ %s から選択する:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "指定したアップロードディレクトリが利用できません。"
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no files to upload!"
msgstr "アップロードファイルがありません"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "空にする"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "実行"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "印刷"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "作成日時"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "最終更新"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "最終検査"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start row"
-msgid "Start row:"
-msgstr "開始行"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "検索:"
@@ -5082,13 +5078,13 @@ msgstr "この値を利用する"
msgid "Rows"
msgstr "行"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "データ"
@@ -5537,7 +5533,7 @@ msgid "Set value: %s"
msgstr "値「%s」を設定"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "デフォルト値に戻す"
@@ -6398,10 +6394,10 @@ msgstr "表示モードの詳細設定"
msgid "Customize default options."
msgstr "デフォルトオプションの詳細設定。"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6964,7 +6960,7 @@ msgid "Maximum displayed SQL length"
msgstr "表示できる SQL 文の最大の長さ"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "ユーザはこれより高い値を設定することはできません"
@@ -7210,38 +7206,46 @@ msgstr "編集、コピー、削除のリンクことです。"
msgid "Where to show the table row links"
msgstr "テーブルの行リンクを表示する場所"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
#, 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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "自然順"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
"「アイコンのみ表示」または「テキストのみ表示」または「アイコン/テキスト両方表"
"示」。"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "テーブルナビゲーションバー"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
#, 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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip の出力バッファリング"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid ""
#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
@@ -7253,21 +7257,21 @@ msgstr ""
"[kbd]SMART[/kbd] とは TIME、DATE、DATETIME、TIMESTAMP 型のカラムに対しては "
"DESC、それ以外は ASC の並び順にします。"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "デフォルトの並び順"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Use persistent connections to MySQL databases."
msgstr "MySQL データベースへの永続的な接続を使用します。"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "永続的な接続"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7281,11 +7285,11 @@ msgstr ""
"phpMyAdmin 環境保管領域に必要なテーブルを見つけることができなかった場合、デー"
"タベースの構造詳細ページに表示されるデフォルトの警告を無効にします。"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "phpMyAdmin 環境保管領域用のテーブルが不明"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7297,11 +7301,11 @@ msgstr ""
"cookie 認証で mcrypt 拡張がなかった場合、警告を表示します。チェックを入れると"
"このメッセージは表示されません。"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7314,29 +7318,29 @@ msgstr ""
"phpMyAdmin 環境保管領域に必要なテーブルを見つけることができなかった場合、デー"
"タベースの構造詳細ページに表示されるデフォルトの警告を無効にします。"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "メニュータブの表示方法"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
#, 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:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "バイナリカラムの保護"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7346,49 +7350,49 @@ msgstr ""
"環境保管領域の設定が必要です)。無効にした場合、クエリ履歴の表示に JavaScript "
"を利用します (ウィンドウを閉じると履歴は消えます)。"
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "永続的なクエリの履歴"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "履歴に残るクエリの件数"
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "クエリ履歴の長さ"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
#, 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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "コード変換エンジン"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, 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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "テーブルのソートを記憶する"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "プライマリキーのデフォルトの並び順"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
#, fuzzy
#| msgid ""
#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@@ -7397,93 +7401,93 @@ msgid ""
msgstr ""
"カラム名を何行おきに挿入するか。[kbd]0[/kbd] でこの機能は無効になります。"
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "カラム名の差し込み間隔"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "リレーション表示カラム"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "サーバの表示オプション"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
#, fuzzy
#| msgid "Save all edited cells at once"
msgid "Grid editing: save all edited cells at once"
msgstr "編集したセルを一度にすべて保存する"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
#, 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:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "保存ディレクトリ"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "使用しない場合は空欄にします。"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "ホストの認証順番"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "デフォルトにする場合は空欄にします。"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "ホスト認証のルール"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "パスワードなしログインの許可"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "root ログインの許可"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "セッション値"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
#, 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:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP 領域"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid ""
#| "The path for the config file for [a@http://swekey.com]SweKey hardware "
@@ -7497,21 +7501,21 @@ msgstr ""
"[a@http://swekey.com]SweKey ハードウェア認証[/a]用の設定ファイルのパス (ド"
"キュメントルートには配置しないこと。/etc/swekey.conf がいいでしょう。)"
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey 設定ファイル"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "使用する認証方法"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "認証タイプ"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
@@ -7523,11 +7527,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/bookmark]ブックマーク[/a]機能を使わない場合"
"は空欄にします。[kbd]pma_bookmark[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "ブックマークテーブル"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
@@ -7539,36 +7543,36 @@ msgstr ""
"カラムのコメントと MIME タイプ機能を使わない場合は空欄にします。"
"[kbd]pma_column_info[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "カラム情報テーブル"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "MySQL サーバと圧縮プロトコルで接続します。"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "圧縮通信を行う"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
#, 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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "接続方法"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "phpMyAdmin ユーザのパスワード"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7581,11 +7585,11 @@ msgstr ""
"権限を制限して設定しておいた特別な MySQL ユーザを使います。詳細は [a@http://"
"wiki.phpmyadmin.net/pma/controluser]wiki[/a] を参照してください。"
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "phpMyAdmin ユーザ"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7597,11 +7601,11 @@ msgstr ""
"環境保管領域に対しての代替ホスト。空欄で既に定義されているホストを使用しま"
"す。"
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "環境保管領域ホスト"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7614,19 +7618,19 @@ msgstr ""
"環境保管領域に対しての代替ホスト。空欄で既に定義されているホストを使用しま"
"す。"
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Control host"
msgid "Control port"
msgstr "環境保管領域ホスト"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
#, fuzzy
#| msgid "Hide databases matching regular expression (PCRE)"
msgid "Hide databases matching regular expression (PCRE)."
msgstr "正規表現 (PCRE) で一致するデータベースを非表示にします。"
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7634,15 +7638,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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA の使用を無効にする"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "非表示にするデータベース"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7654,25 +7658,25 @@ msgstr ""
"SQL クエリの履歴機能を使わない場合は空欄にします。[kbd]pma_history[/kbd] とし"
"ておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL クエリ履歴テーブル"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
msgstr "稼働している MySQL サーバのホスト名"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "サーバのホスト名"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "ログアウト URL"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
#, fuzzy
#| msgid ""
#| "Limits number of table preferences which are stored in database, the "
@@ -7684,17 +7688,17 @@ msgstr ""
"データベースに保管されるテーブル環境設定の上限。古いものから自動的に削除され"
"ます。"
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "テーブル環境設定の最大保管数"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "スレーブのステータステーブルを閲覧する"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7705,13 +7709,13 @@ msgstr ""
"PDF スキーマを使用しない場合は空欄のままにします。[kbd]pma_pdf_pages[/kbd] と"
"しておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "textarea の 1 行の文字数"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -7723,17 +7727,17 @@ msgstr ""
"PDF スキーマを使用しない場合は空欄にします。[kbd]pma_table_coords[/kbd] とし"
"ておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "パスワードなしでの接続を試みます。"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "パスワードなしで接続する"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
#, fuzzy
#| msgid ""
#| "You can use MySQL wildcard characters (% and _), escape them if you want "
@@ -7753,21 +7757,21 @@ msgstr ""
"力していき、最後に [kbd]'*'[/kbd] とだけ入力しておきます。[kbd]'*'[/kbd] は"
"残ったものをアルファベット順に並べて表示する働きをします。"
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "リスト化したデータベースだけを表示する"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr "config 認証を使用しない場合は空欄のままにします。"
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "config 認証用のパスワード"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7777,11 +7781,11 @@ msgstr ""
"PDF スキーマを使用しない場合は空欄のままにします。[kbd]pma_pdf_pages[/kbd] と"
"しておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF スキーマ:ページテーブル"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
@@ -7797,23 +7801,23 @@ msgstr ""
"れらの機能を使わない場合は空欄にします。[kbd]phpmyadmin[/kbd] としておくのが"
"いいでしょう。"
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "データベース名"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
#, 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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "サーバのポート"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7825,11 +7829,11 @@ msgstr ""
"最近使用したテーブルをセッションを跨いで「永続的に」記憶しない場合は空欄にし"
"ます。[kbd]pma_recent[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "最近使用したテーブル"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7841,13 +7845,13 @@ msgstr ""
"最近使用したテーブルをセッションを跨いで「永続的に」記憶しない場合は空欄にし"
"ます。[kbd]pma_recent[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "変数"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -7859,11 +7863,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]リレーションリンク[/a]機能を使わな"
"い場合は空欄にします。[kbd]pma_relation[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "リレーションテーブル"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -7875,15 +7879,15 @@ msgstr ""
"設定例は[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]認証モード[/a]を"
"参照してください。"
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "サインオンセッション名"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "サインオン URL"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
#, 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."
@@ -7891,21 +7895,21 @@ msgstr ""
"MySQL サーバで開いているソケット。デフォルトにしたい場合は空欄のままにしま"
"す。"
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "サーバのソケット"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "SSL を使用する"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -7917,13 +7921,13 @@ msgstr ""
"PDF スキーマを使用しない場合は空欄にします。[kbd]pma_table_coords[/kbd] とし"
"ておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "PDF スキーマ:テーブルの座標"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
#, fuzzy
#| msgid ""
#| "Table to describe the display columns, leave blank for no support; "
@@ -7935,11 +7939,11 @@ msgstr ""
"表示するカラムを記述するためのテーブル。使用しない場合は空欄にします。"
"[kbd]pma_table_info[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "表示するカラムためのテーブル"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" tables'UI preferences across sessions, "
@@ -7951,11 +7955,11 @@ msgstr ""
"テーブルに対する環境設定をセッションを跨いで「永続的に」記憶しない場合は空欄"
"にします。[kbd]pma_table_uiprefs[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "テーブルに対する環境設定を保管するテーブル"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7963,11 +7967,11 @@ msgstr ""
"データベースを作成するときにログの最初の行に DROP DATABASE IF EXISTS 文を追加"
"するかどうか。"
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE を追加する"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7975,11 +7979,11 @@ msgstr ""
"テーブルを作成するときにログの最初の行に DROP TABLE IF EXISTS 文を追加するか"
"どうか。"
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "DROP TABLE を追加する"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7987,19 +7991,19 @@ msgstr ""
"ビューを作成するときにログの最初の行に DROP VIEW IF EXISTS 文を追加するかどう"
"か。"
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "DROP VIEW を追加する"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr "新しい世代に対して自動生成使用するコマンドのリストを定義します。"
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "追跡するコマンド"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
@@ -8011,11 +8015,11 @@ msgstr ""
"SQL コマンドの追跡機能を使わない場合は空欄にします。[kbd]pma_tracking[/kbd] "
"としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL コマンド追跡テーブル"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -8023,11 +8027,11 @@ msgstr ""
"SQL コマンドの追跡機能が、テーブルやビューに対して自動的に世代を作成するかど"
"うか。"
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "世代の自動作成"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -8039,37 +8043,37 @@ msgstr ""
"データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_userconfig[/"
"kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "ユーザ環境保管テーブル"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "利用するテーブル"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "ホストテーブルを使う"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -8081,15 +8085,15 @@ msgstr ""
"データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_userconfig[/"
"kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "config 認証用のユーザ"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -8097,21 +8101,21 @@ msgstr ""
"このサーバのわかりやすい説明。ホスト名をそのまま表示させる場合には、空欄のま"
"まにします。"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "このサーバの詳細な名前"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
#, 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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "すべての行の表示を許可する"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
#, fuzzy
#| msgid ""
#| "Please note that enabling this has no effect with [kbd]config[/kbd] "
@@ -8128,39 +8132,39 @@ msgstr ""
"れはパスワード変更コマンドに対して直接実行する機能を制限するものではありませ"
"ん。"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "パスワード変更フォームを表示する"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "「データベースを作成する」の部分を表示する"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, 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:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "テーブルのコメント"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
#, 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:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "作成日時を表示する"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last update timestamp for all tables"
@@ -8168,11 +8172,11 @@ msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr "テーブル一覧において最終更新日時の列を表示させるかどうか"
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "最終更新日時を表示する"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last check timestamp for all tables"
@@ -8180,11 +8184,11 @@ msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr "テーブル一覧において最終検査日時の列を表示させるかどうか"
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "最終検査日時を表示する"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
#, fuzzy
#| msgid ""
#| "Defines whether or not type fields should be initially displayed in edit/"
@@ -8194,31 +8198,31 @@ msgid ""
"insert mode."
msgstr "編集/挿入モードでデータ型項目を表示するかどうか定義します。"
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "データ型項目を表示する"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
#, 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:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "関数項目を表示する"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
#, fuzzy
#| msgid "Whether to show hint or not"
msgid "Whether to show hint or not."
msgstr "操作ヒントを表示するかどうか。"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "操作ヒントを表示する"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -8230,15 +8234,15 @@ msgstr ""
"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] の結果へのリンク"
"を表示します。"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "phpinfo() リンクを表示する"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "詳細な MySQL サーバ情報を表示する"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -8247,11 +8251,11 @@ msgid ""
msgstr ""
"phpMyAdmin によって生成される SQL クエリを表示するかどうかを定義します。"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "SQL クエリを表示する"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
#, fuzzy
#| msgid ""
#| "Defines whether the query box should stay on-screen after its submission"
@@ -8259,21 +8263,21 @@ msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "送信後もクエリボックスを画面上に残しておくかどうかを定義します。"
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "クエリボックスを保持する"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
#, 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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "統計を表示する"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
#, fuzzy
#| msgid ""
#| "Mark used tables and make it possible to show databases with locked tables"
@@ -8283,11 +8287,11 @@ msgstr ""
"使われているテーブルには印をして、テーブルがロックされていても可能であれば"
"データベースを閲覧します。"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "ロックされているテーブルをスキップする"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected"
msgid ""
@@ -8297,11 +8301,11 @@ msgstr ""
"Suhosin が検出された場合、警告をメインページに表示します。チェックを入れると"
"このメッセージは表示されません。"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin 警告"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -8315,13 +8319,13 @@ msgstr ""
"phpMyAdmin 環境保管領域に必要なテーブルを見つけることができなかった場合、デー"
"タベースの構造詳細ページに表示されるデフォルトの警告を無効にします。"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "ログインクッキーの有効期間"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -8333,11 +8337,11 @@ msgstr ""
"編集モードでの textarea の 1 行の文字数。SQL クエリ用のでは 2 倍、クエリウィ"
"ンドウに対しては 1.25 倍になります。"
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "textarea の 1 行の文字数"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -8349,39 +8353,39 @@ msgstr ""
"編集モードでの textarea の行数。SQL クエリ用のでは 2 倍、クエリウィンドウに対"
"しては 1.25 倍になります。"
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "textarea の行数"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
#, 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:791
+#: libraries/config/messages.inc.php:793
#, 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:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "デフォルトタイトル"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
#, 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:795
+#: libraries/config/messages.inc.php:797
#, 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:797
+#: libraries/config/messages.inc.php:799
#, fuzzy
#| msgid ""
#| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following "
@@ -8399,31 +8403,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:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "信頼されたプロキシのリスト(IP アドレスの許可/拒否)"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
#, 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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "アップロードディレクトリ"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
#, fuzzy
#| msgid "Allow for searching inside the entire database"
msgid "Allow for searching inside the entire database."
msgstr "全てのデータベース内を検索することを許可します。"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "データベース検索を使用する"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid ""
#| "When disabled, users cannot set any of the options below, regardless of "
@@ -8435,28 +8439,28 @@ msgstr ""
"無効にすると、右端のチェックボックスに関係なく、ユーザが以下のオプションを設"
"定することはできません。"
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "設定に開発者向けタブを追加する"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "バージョンアップの確認"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
#, 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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8464,34 +8468,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "ユーザ名"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "パスワード"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8504,55 +8508,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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "サーバのポート"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "実行されたクエリ"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8581,46 +8585,46 @@ msgstr "HTTP 認証"
msgid "Signon authentication"
msgstr "サインオン認証"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "LOAD DATA 文を使用した CSV の読み込み"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Open Document スプレッドシート"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "簡易"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "詳細"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "データベースエクスポートオプション"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "MS Excel 用の CSV"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -14604,20 +14608,33 @@ msgstr "デフォルトの表示クエリとしてブックマーク \"%s\" を
msgid "Showing as PHP code"
msgstr "PHP コードとして表示"
-#: libraries/sql.lib.php:1765
-#, fuzzy
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
#| 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"このテーブルには、ユニークなカラムが含まれていません。グリッド編集、チェック"
"ボックス、編集、コピー、削除のリンクに関連する機能は、保存後に動作しない場合"
"があります。"
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"このテーブルには、ユニークなカラムが含まれていません。グリッド編集、チェック"
+"ボックス、編集、コピー、削除のリンクに関連する機能は、保存後に動作しない場合"
+"があります。"
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "テーブル `%s` のインデックスに問題があります"
@@ -15981,6 +15998,12 @@ msgstr "コメント"
msgid "Drag to reorder"
msgstr "ドラッグでカラムの入れ替え"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start row"
+msgid "Start row:"
+msgstr "開始行"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "表示するカラム (最低 1 つ):"
diff --git a/po/ka.po b/po/ka.po
index 7a0c6bbdba..7cff9fc06d 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-03-27 15:20+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Georgian %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "მოთხოვნის გაგზავნა"
@@ -3763,7 +3764,7 @@ msgstr "ძებნა"
msgid "Delete bookmark"
msgstr "ძებნა"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3771,21 +3772,21 @@ msgid ""
"configured)."
msgstr "(or the local MySQL server's socket is not correctly configured)"
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "სერვერი არ პასუხობს"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "დეტალები…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3827,9 +3828,9 @@ msgstr[0] "%s match(es) inside table %s"
msgstr[1] "%s match(es) inside table %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3894,16 +3895,16 @@ msgstr "ფაილები"
msgid "Search this table"
msgstr "მონაცემთა ბაზაში ძებნა"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "დასაწყისი"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3911,8 +3912,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "წინა"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3920,8 +3921,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "შემდეგი"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3932,8 +3933,9 @@ msgstr "დასასრული"
msgid "All"
msgstr "ყველა"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows:"
@@ -4047,16 +4049,16 @@ msgid "Query took %01.4f seconds."
msgstr "მოთხოვნას დასჭირდა %01.4f წმ"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr ""
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -4064,7 +4066,7 @@ msgstr ""
msgid "Check All"
msgstr "ყველას შემოწმება"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "ხედის ამობეჭდვა"
@@ -4169,11 +4171,11 @@ msgstr "ინფორმაცია ვერსიის შესახე
msgid "Open new phpMyAdmin window"
msgstr "phpMyAdmin-ის ახალი ფანჯრის გახსნა"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -4237,8 +4239,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4254,7 +4256,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "სერვერი"
@@ -4266,16 +4268,16 @@ msgid "View"
msgstr "ხედო"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4287,10 +4289,10 @@ msgid "Structure"
msgstr "სტრუქტურა"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4298,19 +4300,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "ძებნა"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4319,7 +4321,7 @@ msgid "Insert"
msgstr "ჩასმა"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4328,21 +4330,21 @@ msgid "Privileges"
msgstr "პრივილეგიები"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "მოქმედებები"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4359,16 +4361,16 @@ msgstr "ტრიგერები"
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "მოთხოვნა"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Routines"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4376,18 +4378,18 @@ msgstr "Routines"
msgid "Events"
msgstr "მოვლენები"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "შემქნელი"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Central columns"
msgstr "CHAR textarea columns"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4395,40 +4397,40 @@ msgstr "CHAR textarea columns"
msgid "Databases"
msgstr "მონაცემთა ბაზები"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "მომხმარებელი"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "ბინარული ჟურნალი"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "რეპლიკაცია"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "ცვლადები"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "სიმბოლოთა ნაკრებები"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "ძრავები"
@@ -4456,7 +4458,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "ჩაისვა %1$d სტრიქონი."
msgstr[1] "ჩაისვა %1$d სტრიქონი."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -5109,12 +5111,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "მაქს: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5125,28 +5127,28 @@ msgstr "მაქს: %s%s"
msgid "MySQL said: "
msgstr "MySQL-მა თქვა: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "SQL-ის ახსნა"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "PHP კოდის გარეშე"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP კოდის შექმნა"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit mode"
msgctxt "Inline edit query"
@@ -5154,98 +5156,92 @@ msgid "Edit inline"
msgstr "რედაქტირების რეჟიმი"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "კვი"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y, %I:%M %p"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s დღე, %s საათი, %s წუთი და %s წამი"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Routines"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "web server upload directory"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no configured servers"
msgid "There are no files to upload!"
msgstr "There are no configured servers"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "ცარიელი"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "დაბეჭდვა"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "შეიქმნა"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "უკანასკნელი განახლება"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr ""
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "Startup"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5270,13 +5266,13 @@ msgstr "გამოიყენეთ ეს ველი"
msgid "Rows"
msgstr "სტრიქონები"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "მონაცემები"
@@ -5738,7 +5734,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6553,10 +6549,10 @@ msgstr "დათვალიერების რეჟიმი"
msgid "Customize default options."
msgstr "Customize default export options"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -7076,7 +7072,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -7295,35 +7291,43 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Alter table order by"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
msgid "Table navigation bar"
msgstr "Customize navigation frame"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid ""
#| "d]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, "
@@ -7335,72 +7339,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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Use persistent connections to MySQL databases."
msgstr "MySQL სერვერთან კავშირის შეკუმშვა"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
#, 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:532
+#: libraries/config/messages.inc.php:534
#, fuzzy
#| msgid "Protect binary fields"
msgid "Protect binary columns"
msgstr "Protect binary fields"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
#, fuzzy
#| msgid ""
#| "ble if you want DB-based query history (requires phpMyAdmin configuration "
@@ -7415,153 +7419,153 @@ msgstr ""
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Rename table to"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Repair threads"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display"
msgstr "Relational display field"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "სერვერის ჩვენების პარამეტრები"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "დირექტორიის შენახვა"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
#, fuzzy
#| msgid "Host authentication order"
msgid "Host authorization order"
msgstr "Host authentication order"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
#, fuzzy
#| msgid "Host authentication rules"
msgid "Host authorization rules"
msgstr "Host authentication rules"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "root-ით შესვლის ნებართვა"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "სესიის მნიშვნელობა"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication type"
msgid "Authentication method to use."
msgstr "ავთენტიფიკაციის ტიპი"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "ავთენტიფიკაციის ტიპი"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7572,11 +7576,11 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "ცხრილის ჩანიშვნა"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7587,86 +7591,86 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "MySQL სერვერთან კავშირის შეკუმშვა"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "კავშირის შეკუმშვა"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "კავშირის ტიპი"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "Control user"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Control user"
msgid "Control port"
msgstr "Control user"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA-ის გამოყენების აკრძალვა"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "მონაცემთა ბაზების დამალვა"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7677,39 +7681,39 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "სერვერის ჰოსტის სახელი"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
#, 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:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7720,13 +7724,13 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Central columns table"
msgstr "CHAR textarea columns"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7737,17 +7741,17 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Connect without password"
msgid "Try to connect without password."
msgstr "პაროლის გარეშე დაკავშირება"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "პაროლის გარეშე დაკავშირება"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
#, fuzzy
#| msgid ""
#| " can use MySQL wildcard characters (% and _), escape them if you want use "
@@ -7760,19 +7764,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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7782,33 +7786,33 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "მონაცემთა ბაზა"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "სერვერის პორტი"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7819,13 +7823,13 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Recall user name"
msgid "Recently used table"
msgstr "Recall user name"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7836,13 +7840,13 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "ცვლადები"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7853,43 +7857,43 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Server socket"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "SSL-ის გამოყენება"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7900,11 +7904,11 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
#, fuzzy
#| msgid ""
#| "le to describe the display fields, leave blank for no support; gested: "
@@ -7916,13 +7920,13 @@ msgstr ""
"Table to describe the display fields, leave blank for no support; suggested: "
"[kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Display fields table"
msgid "Display columns table"
msgstr "Display fields table"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7933,51 +7937,51 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "UI პარამეტრების მაგიდა"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Statements"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7988,25 +7992,25 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
#, fuzzy
#| msgid "SQL query history table"
msgid "SQL query tracking table"
msgstr "SQL query history table"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Automatic recovery mode"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -8017,35 +8021,35 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "გამოიყენე ცხრილები"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -8056,237 +8060,237 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
#, 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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "პაროლის შეცვლის ფორმის ჩვენება"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "მონაცემთა ბაზის შექმნის ფორმის ჩვენება"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "ცხრილის კომენტარები"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "PHP-ის ინფორმაციის ჩვენება"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Show slave status"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Show open tables"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "ფუნქციების ველების ჩვენება"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Show grid"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "phpinfo() ბმულის ჩვენება"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "MySQL სერვერის შესახებ დეტალური ინფორმაციის ჩვენება"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "SQL მოთხოვნების ჩვენება"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 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:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "სტატისტიკის ჩევნება"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "დაბლოკილი ცხრილების გამოტოვება"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Textarea columns"
msgstr "CHAR textarea columns"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
#, fuzzy
#| msgid "CHAR textarea rows"
msgid "Textarea rows"
msgstr "CHAR textarea rows"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
#| msgid "Default table tab"
msgid "Default title"
msgstr "Default table tab"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -8294,52 +8298,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "ატვირთვის დირექტორია"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "უკანასკნელ ვერსიაზე შემოწმება"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8347,33 +8351,33 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
msgid "Proxy username"
msgstr "მომხმარებელი:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "პაროლი"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
@@ -8385,53 +8389,53 @@ msgstr ""
"[a@http://ka.wikipedia.org/wiki/Bzip2]bzip2[/a] შეკუმშვის ჩართვა "
"იმპორტირების და ექსპორტირების ოპერაციებისთვის"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "სერვერის პორტი"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8465,48 +8469,48 @@ msgstr "HTTP ავტორიზაცია"
msgid "Signon authentication"
msgstr "Host authentication order"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Open Document Spreadsheet"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Custom color"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "მონაცემთა ბაზის ექსპორტის პარამეტრები"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV MS Excel-თვის"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -14409,13 +14413,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "PHP კოდის სახით ჩვენება"
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -15811,6 +15823,12 @@ msgstr "კომენტარი"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "Startup"
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/kk.po b/po/kk.po
index 07a0031e80..d952aee7d6 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-03-31 14:26+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Kazakh %s:"
msgstr "%s дерекқорына SQL сұранысы:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Сұранысты жіберу"
@@ -3493,25 +3494,25 @@ msgstr "Жою"
msgid "Delete bookmark"
msgstr "Жою"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3553,9 +3554,9 @@ msgstr[0] "%1$s кестедегi сәйкестiк %2$s"
msgstr[1] "%1$s кестедегi сәйкестiктер %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3613,28 +3614,28 @@ msgstr "Сүзгі"
msgid "Search this table"
msgstr "Дерекқорынан іздеу"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr ""
@@ -3643,8 +3644,9 @@ msgstr ""
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3745,16 +3747,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Белгi соғылғандарды:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3762,7 +3764,7 @@ msgstr "Белгi соғылғандарды:"
msgid "Check All"
msgstr "Барлығын белгілеу"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Баспаға шығару түрі"
@@ -3859,11 +3861,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3927,8 +3929,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr "Индекс %s жойылған болатын."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3944,7 +3946,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -3956,16 +3958,16 @@ msgid "View"
msgstr "Түр"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3977,10 +3979,10 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3988,19 +3990,19 @@ msgid "SQL"
msgstr ""
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Іздеу"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4009,7 +4011,7 @@ msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4018,21 +4020,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr ""
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4049,16 +4051,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4066,18 +4068,18 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add columns"
msgid "Central columns"
msgstr "Бағаналар қосу"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4085,38 +4087,38 @@ msgstr "Бағаналар қосу"
msgid "Databases"
msgstr "Дерекқоры"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr ""
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Репликация"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -4141,7 +4143,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4772,12 +4774,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4788,28 +4790,28 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit Index"
msgctxt "Inline edit query"
@@ -4817,93 +4819,87 @@ msgid "Edit inline"
msgstr "Индексті өзгерту"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Тазарту"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Құру"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Соңғы жаңартылым"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Соңғы тексерім"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Sort"
-msgid "Start row:"
-msgstr "Сұрыптау"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -4928,13 +4924,13 @@ msgstr "Осы мәнді қолданыңыз"
msgid "Rows"
msgstr "Қатарлар"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5364,7 +5360,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6038,10 +6034,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6499,7 +6495,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6700,842 +6696,850 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table comments"
msgid "Table navigation bar"
msgstr "Кестеге түсініктеме:"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "No data found"
msgid "Relational display"
msgstr "Мәліметтер жоқ"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Table comments"
msgid "For display Options"
msgstr "Кестеге түсініктеме:"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add columns"
msgid "Central columns table"
msgstr "Бағаналар қосу"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Tracked tables"
msgid "Favorites table"
msgstr "Қадағаланатын кестелер"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Кестелерді қолдану"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Кестеге түсініктеме"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
+msgid ""
+"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772
-msgid "Show statistics"
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+msgid "Retain query box"
msgstr ""
#: libraries/config/messages.inc.php:773
+msgid "Allow to display database and table statistics (eg. space usage)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:774
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7543,52 +7547,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7596,84 +7600,84 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username:"
msgid "Proxy username"
msgstr "Қолданушы:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password:"
msgid "Proxy password"
msgstr "Құпия сөз:"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Local monitor configuration incompatible"
msgid "Enable Zero Configuration mode"
@@ -7699,44 +7703,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr ""
@@ -13185,13 +13189,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -14464,6 +14476,12 @@ msgstr "Пікірлеу"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Sort"
+msgid "Start row:"
+msgstr "Сұрыптау"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/km.po b/po/km.po
index b650f03536..64de43d643 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-04-19 18:59+0200\n"
"Last-Translator: Sovichet Tep \n"
"Language-Team: Central Khmer %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr ""
@@ -3361,25 +3362,25 @@ msgstr "ធ្វើបច្ចុប្បន្នភាពចំណា
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3419,9 +3420,9 @@ msgstr[0] ""
msgstr[1] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3475,28 +3476,28 @@ msgstr "ត្រងជួរដេក"
msgid "Search this table"
msgstr ""
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr ""
@@ -3505,8 +3506,9 @@ msgstr ""
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3602,16 +3604,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr ""
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3619,7 +3621,7 @@ msgstr ""
msgid "Check All"
msgstr ""
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr ""
@@ -3714,11 +3716,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3782,8 +3784,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3799,7 +3801,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -3811,16 +3813,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3832,10 +3834,10 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3843,19 +3845,19 @@ msgid "SQL"
msgstr ""
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr ""
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3864,7 +3866,7 @@ msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3873,21 +3875,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr ""
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3904,16 +3906,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3921,16 +3923,16 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr ""
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3938,38 +3940,38 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr ""
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr ""
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -3994,7 +3996,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4597,12 +4599,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4613,28 +4615,28 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit Index"
msgctxt "Inline edit query"
@@ -4642,91 +4644,87 @@ msgid "Edit inline"
msgstr "កែសន្ទស្សន៍"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr ""
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr ""
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr ""
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr ""
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr ""
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr ""
@@ -4749,13 +4747,13 @@ msgstr ""
msgid "Rows"
msgstr "ជួរដេក"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5174,7 +5172,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -5842,10 +5840,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6289,7 +6287,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6484,832 +6482,840 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "តារាងដែលពេញចិត្ត"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments:"
msgid "Show table comments"
msgstr "មតិយោបល់តារាង៖"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
+msgid ""
+"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772
-msgid "Show statistics"
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+msgid "Retain query box"
msgstr ""
#: libraries/config/messages.inc.php:773
+msgid "Allow to display database and table statistics (eg. space usage)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:774
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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 +7323,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 +7376,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7467,44 +7473,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr ""
@@ -12803,13 +12809,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -14035,6 +14049,10 @@ msgstr ""
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr ""
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/kn.po b/po/kn.po
index 4ebc63c8d5..0f5821fb8a 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-12-24 02:27+0200\n"
"Last-Translator: Robin van der Vliet \n"
"Language-Team: Kannada %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr ""
@@ -3227,25 +3228,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3285,9 +3286,9 @@ msgstr[0] ""
msgstr[1] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3341,28 +3342,28 @@ msgstr ""
msgid "Search this table"
msgstr ""
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr ""
@@ -3371,8 +3372,9 @@ msgstr ""
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3468,16 +3470,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr ""
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3485,7 +3487,7 @@ msgstr ""
msgid "Check All"
msgstr ""
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr ""
@@ -3578,11 +3580,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3646,8 +3648,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3663,7 +3665,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -3675,16 +3677,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3696,10 +3698,10 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3707,19 +3709,19 @@ msgid "SQL"
msgstr ""
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr ""
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3728,7 +3730,7 @@ msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3737,21 +3739,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr ""
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3768,16 +3770,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3785,16 +3787,16 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr ""
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3802,38 +3804,38 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "ಬಳಕೆದಾರರು"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr ""
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -3858,7 +3860,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4461,12 +4463,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4477,118 +4479,114 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr ""
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "ರ"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr ""
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr ""
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr ""
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr ""
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr ""
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr ""
@@ -4611,13 +4609,13 @@ msgstr ""
msgid "Rows"
msgstr ""
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5022,7 +5020,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -5690,10 +5688,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6137,7 +6135,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6332,828 +6330,836 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
+msgid ""
+"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772
-msgid "Show statistics"
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+msgid "Retain query box"
msgstr ""
#: libraries/config/messages.inc.php:773
+msgid "Allow to display database and table statistics (eg. space usage)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:774
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7161,52 +7167,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7214,80 +7220,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7311,44 +7317,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr ""
@@ -12612,13 +12618,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -13825,6 +13839,10 @@ msgstr ""
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr ""
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/ko.po b/po/ko.po
index f08b68e235..ef8cf5f565 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-03-30 03:03+0200\n"
"Last-Translator: Kyeong Su Shin \n"
"Language-Team: Korean %s:"
msgstr "데이터베이스 %s에 SQL 질의:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "질의 실행"
@@ -3405,7 +3406,7 @@ msgstr "북마크 업데이트"
msgid "Delete bookmark"
msgstr "북마크 삭제"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3413,19 +3414,19 @@ msgstr ""
"서버가 응답하지 않습니다 (또는 로컬 서버의 소켓이 현재 제대로 구성되어 있지 "
"않습니다)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "서버가 응답하지 않습니다."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "디렉토리를 포함하는 데이터베이스의 권한을 확인하십시오."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "자세히…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr "관리사용자(controluser, 설정에 정의됨)로서의 접속에 실패."
@@ -3463,9 +3464,9 @@ msgid_plural "%1$s matches in %2$s"
msgstr[0] "%2$s 에서 %1$s 건 일치"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3519,28 +3520,28 @@ msgstr "행 필터링"
msgid "Search this table"
msgstr "현재 테이블 검색"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "처음"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "이전"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "다음"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "마지막"
@@ -3549,8 +3550,9 @@ msgstr "마지막"
msgid "All"
msgstr "모두"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "행 갯수:"
@@ -3647,16 +3649,16 @@ msgid "Query took %01.4f seconds."
msgstr "질의 실행시간 %01.4f 초."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "선택한 것을:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3664,7 +3666,7 @@ msgstr "선택한 것을:"
msgid "Check All"
msgstr "모두 체크"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "인쇄용 보기"
@@ -3760,11 +3762,11 @@ msgstr "Git정보가 없습니다!"
msgid "Open new phpMyAdmin window"
msgstr "새 창으로 phpMyAdmin 열기"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "클릭하여 페이지 상단으로 이동"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "이 페이지를 넘기려면 Javascript 사용을 허용해야 합니다!"
@@ -3828,8 +3830,8 @@ msgstr "기본 키를 제거했습니다."
msgid "Index %s has been dropped."
msgstr "인덱스 %s 를 제거했습니다."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3846,7 +3848,7 @@ msgstr ""
"인덱스 %1$s와 %2$s는 동일한 것으로, 두 가지 중 하나는 제거해도 상관없습니다."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "서버"
@@ -3858,16 +3860,16 @@ msgid "View"
msgstr "뷰"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3879,10 +3881,10 @@ msgid "Structure"
msgstr "구조"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3890,19 +3892,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "검색"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3911,7 +3913,7 @@ msgid "Insert"
msgstr "삽입"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3920,21 +3922,21 @@ msgid "Privileges"
msgstr "사용권한"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "테이블 작업"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "SQL 명령어 트래킹"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3951,16 +3953,16 @@ msgstr "트리거"
msgid "Database seems to be empty!"
msgstr "데이터베이스가 비어있는 것 같습니다!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "질의 마법사"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "루틴"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3968,16 +3970,16 @@ msgstr "루틴"
msgid "Events"
msgstr "이벤트"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "디자이너"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "중심 열"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3985,38 +3987,38 @@ msgstr "중심 열"
msgid "Databases"
msgstr "데이터베이스"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "사용자"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "바이너리 로그"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "복제"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "환경설정값"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "문자셋"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "플러그인"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "엔진"
@@ -4038,7 +4040,7 @@ msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d 열이 삽입되었습니다."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4696,12 +4698,12 @@ msgstr "가변 길이 (0-65,535) 문자열, 비교에 이진(binary) 콜레이
msgid "An enumeration, chosen from the list of defined values"
msgstr "열거형, 정의된 값들의 목록 중에서 선택됨"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "최대: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4712,28 +4714,28 @@ msgstr "최대: %s%s"
msgid "MySQL said: "
msgstr "MySQL 메시지: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "SQL 해석"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "SQL 해석 생략"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "PHP 코드 없이 보기"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP 코드 보기"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
@@ -4741,91 +4743,87 @@ msgid "Edit inline"
msgstr "인덱스 편집"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "일"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%y-%m-%d %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s일 %s시간 %s분 %s초"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "매개 변수 누락:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "데이터베이스 \"%s\" 로 이동."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s 기능은 알려진 버그가 있습니다. %s 문서를 참조하십시오"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "토글하려면 클릭"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "업로드 파일:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "웹 서버 업로드 디렉토리중 %s에서 선택:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "설정한 업로드 디렉토리에 접근할 수 없습니다."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "업로드할 파일이 없습니다!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "비우기"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "실행하기"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "인쇄"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "생성"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "마지막 업데이트"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "마지막 검사"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "시작 행:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "검색:"
@@ -4848,13 +4846,13 @@ msgstr "이 값을 사용합니다"
msgid "Rows"
msgstr "행"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "데이터"
@@ -5274,7 +5272,7 @@ msgid "Set value: %s"
msgstr "설정된 값: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "기본값으로 복원"
@@ -6011,10 +6009,10 @@ msgstr "탐색 모드 사용자화."
msgid "Customize default options."
msgstr "기본옵션 사용자화."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV 데이터"
@@ -6484,7 +6482,7 @@ msgid "Maximum displayed SQL length"
msgstr "최대한 표시될 SQL 길이"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "사용자는 더 높은 값을 설정 할 수 없습니다"
@@ -6698,32 +6696,40 @@ msgstr "수정, 복사, 삭제 링크가 있음."
msgid "Where to show the table row links"
msgstr "테이블 열 링크를 표시할 위치"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr "테이블과 데이터베이스를 정렬할 때 자연 순서(natural order) 사용."
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "자연순서"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "아이콘만 사용, 텍스트만 사용, 둘 다 사용."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "테이블 네비게이션 바"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "HTTP 전송 시 속도에 맞춰 GZip 출력 버퍼를 사용."
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip 출력 버퍼"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6731,19 +6737,19 @@ msgstr ""
"[kbd]SMART[/kbd] - 예: TIME, DATE, DATETIME 및 TIMESTAMP 형식 컬럼에 대해 내"
"림차순 정렬, 다른 형식에 대해 오름차순 정렬."
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "기본 정렬 순서"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "MySQL 데이터베이스에 영속적인 연결 사용."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "영속적인 연결"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6752,21 +6758,21 @@ msgstr ""
"데이터베이스 상세 구조 페이지에서, phpMyAdmin 설정 저장용 테이블 중 하나가 없"
"을 경우 출력되는 기본 경고를 끄기."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "phpMyAdmin 설정 공간 테이블이 없습니다"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "서버/라이브러리 차이점 경고"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6774,27 +6780,27 @@ msgstr ""
"테이블의 컬럼 이름이 MySQL 예약어일 경우 구조 페이지에서 출력되는 기본 경고"
"를 끄기."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "MySQL 예약어 경고"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "메뉴탭 보여주기 방식"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "여러 기능 링크를 표시하는 방법"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "BLOB, 바이너리 컬럼 편집 허용 안함."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "바이너리 컬럼 보호"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6804,125 +6810,125 @@ msgstr ""
"다). 비활성화 할 경우, 쿼리 기록으로 JS-routines가 사용됩니다 (창을 닫을 경"
"우 소멸됩니다)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "영구적 쿼리 기록"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "히스토리에 저장될 쿼리의 갯수."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "쿼리 기록 길이"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr "문자열 변환을 위한 함수를 선택하세요."
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "기록 엔진"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "조회한 테이블의 정렬 순서를 기억함."
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "테이블의 정렬 순서 기억하기"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr "기본 키를 가진 테이블의 기본 정렬 순서."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "기본 키 기본 정렬 순서"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"X번의 셀 마다 헤더를 다시 보여줍니다. [kbd]0[/kbd]이면 이 기능 비활성화."
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "반복 헤더"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "격자판 수정: 트리거 동작"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "연관된 행 표시"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "서버보기 옵션."
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "격자판 수정: 수정된 칸들이 한 번에 저장됨"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "내보내기가 저장될 서버상의 디렉토리."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "저장 디렉토리"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "사용하지 않으면 빈칸으로 두세요."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "호스트 인증 지시"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "빈칸으로 두면 기본값이 적용됩니다."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "호스트 인증 규칙"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "암호 없이 로그인 허용"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "루트 사용자 로그인 허용"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "세션 값"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "HTTP 인증시 HTTP 기본 렐름 이름."
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP 렐름"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -6931,19 +6937,19 @@ msgstr ""
"[a@http://swekey.com]SweKey hardware authentication[/a] 설정 파일 경로 "
"(document root에 없습니다; 권장값: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey 설정 파일"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "사용할 인증 방법."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "인증 형식"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -6951,11 +6957,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/bookmark]북마크[/a] 지원이 필요 없는 경우 "
"비워두세요, 추천: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "테이블 즐겨찾기"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -6963,31 +6969,31 @@ msgstr ""
"컬럼의 주석이나 마임타입을 지정하지 않을 경우 비워두세요. 제안값: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "컬럼 정보 테이블"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "MySQL 서버와의 압축된 통신."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "연결 압축"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "서버와의 연결 방법, 모르면 [kbd]tcp[/kbd]로 두세요."
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "연결 형식"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "유저 비밀번호 제어"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -6995,21 +7001,21 @@ msgstr ""
"제한된 권한 설정을 위한 특별한 MySQL 사용자 설정. 추가 정보는 [a@http://wiki."
"phpmyadmin.net/pma/controluser]위키[/a]에."
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "유저 제어"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr "설정 저장을 위한 대체서버; 비워두면 이전에 정의된 서버를 사용."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "호스트 제어"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7018,29 +7024,29 @@ msgstr ""
"설정 저장공간을 가지고 있는 서버에 연결할 포트 번호; 빈 값으로 두면 기본값을 "
"사용하거나, controlhost와 host가 같은 경우 다른 곳에 정의된 값을 사용합니다."
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "제어 포트"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "정규식에 일치하는 데이터베이스 숨기기 (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA를 사용할 수 없도록 함"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "데이터베이스 숨기기"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7048,38 +7054,38 @@ msgstr ""
"SQL 쿼리 내역 저장 기능을 사용하지 않으려면 빈 칸으로 비워두세요, 권장: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL 쿼리 히스토리 테이블"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "MySQL 서버가 구동중인 호스트의 이름."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "서버 호스트명"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "로그아웃 URL"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
"데이터베이스에 저장될 테이블 설정 갯수 제한, 오래된 것은 자동으로 삭제됨."
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "저장될 테이블 설정의 최대 갯수"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "QBE가 검색 테이블에 저장되었습니다"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7090,13 +7096,13 @@ msgid ""
msgstr ""
"PDF 스키마를 제공하지 않을 경우 비워두세요. 제안값: [kbd]pma__pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Central columns"
msgid "Central columns table"
msgstr "중심 열"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7108,15 +7114,15 @@ msgstr ""
"PDF 스키마를 제공하지 않을 경우 비워두세요. 제안값: [kbd]pma__table_coords[/"
"kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "암호없이 연결 시도."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "암호없이 연결"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7125,29 +7131,29 @@ msgstr ""
"MySQL 와일드카드 문자 (%와 _)를 쓸 수 있습니다. 원래 의미로 쓰기 위해서는 이"
"스케이프 하세요([kbd]'my_db'[/kbd]로 하지 말고 [kbd]'my\\_db'[/kbd])."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "리스트에 있는 데이터베이스만 보여주기"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "config 인증을 사용하지 않을 경우 비워두세요."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "config 인증용 패스워드"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF 스키마: 페이지 테이블"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7157,20 +7163,20 @@ msgstr ""
"phpmyadmin.net/pma/pmadb]pmadb[/a]를 참고하세요. 이 기능들을 제공하지 않으려"
"면 비워두세요. 권장: [kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "데이터베이스명"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr "MySQL 서버의 네트워크 포트. 기본값을 쓰려면 비워두세요."
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "서버 포트"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7182,11 +7188,11 @@ msgstr ""
"데이터베이스에 사용자 설정 스토리지를 두지 않으려면 비워둠, 추천: "
"[kbd]pma__userconfig[/kbd]"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "최근에 사용한 테이블"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7198,13 +7204,13 @@ msgstr ""
"데이터베이스에 사용자 설정 스토리지를 두지 않으려면 비워둠, 추천: "
"[kbd]pma__userconfig[/kbd]"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "즐겨찾기 테이블"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
@@ -7216,11 +7222,11 @@ msgstr ""
"SQL 쿼리 추적 기능을 사용하지 않으려면 빈 칸으로 비워두세요. 권장: "
"[kbd]pma__tracking[/kbd]"
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "연관된 테이블"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7228,31 +7234,31 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]인증 타입[/a] 예제를 참조"
"하세요."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "접속 세션 이름"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "접속 URL"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr "MySQL 서버가 listen하고 있는 소켓으로, 비워두면 기본값으로 설정됩니다."
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "서버 소켓"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "MySQL 서버 연결시 SSL을 활성화합니다."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "SSL 사용"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7260,11 +7266,11 @@ msgstr ""
"PDF 스키마를 제공하지 않을 경우 비워두세요. 제안값: [kbd]pma__table_coords[/"
"kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7275,11 +7281,11 @@ msgid ""
msgstr ""
"PDF 스키마를 제공하지 않을 경우 비워두세요. 제안값: [kbd]pma__pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "열 목록 표시"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7291,11 +7297,11 @@ msgstr ""
"데이터베이스에 사용자 설정 스토리지를 두지 않으려면 비워둠, 추천: "
"[kbd]pma__userconfig[/kbd]"
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "UI 설정 테이블"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7303,41 +7309,41 @@ msgstr ""
"데이터베이스 생성 시 DROP DATABASE IF EXISTS 구문을 로그 첫 번째 줄에 추가할"
"지 여부."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE 추가"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "DROP TABLE 추가"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "DROP VIEW 추가"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "문장 추적"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7345,21 +7351,21 @@ msgstr ""
"SQL 쿼리 추적 기능을 사용하지 않으려면 빈 칸으로 비워두세요. 권장: "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL 쿼리 추적 테이블"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr "SQL 쿼리 추적 기능이 테이블과 뷰에 대한 버전을 자동으로 생성할지 여부."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "버전 자동생성"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7367,11 +7373,11 @@ msgstr ""
"데이터베이스에 사용자 설정 저장공간을 두지 않으려면 비워둠, 권장: "
"[kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "사용자 설정 스토리지 테이블"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7381,11 +7387,11 @@ msgstr ""
"하나라도 값을 비워두면 해당 기능을 사용할 수 없음. 권장: [kbd]pma__users[/"
"kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "사용자 목록"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7395,11 +7401,11 @@ msgstr ""
"도 값을 비워두면 해당 기능을 사용할 수 없음. 권장: [kbd]pma__usergroups[/"
"kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "사용자 그룹 테이블"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7407,34 +7413,34 @@ msgstr ""
"네비게이션 아이템 숨기기/보이기 기능을 사용하지 않으려면 비워두세요. 권장: "
"[kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "숨겨진 네비게이션 아이템 테이블"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "설정 인증용 사용자"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
"이 서버에 대한 알기 쉬운 설명. 호스트 이름을 표시하려면 공백으로 두세요."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "이 서버 이름 보기"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "\"모든 행 보기\" 버튼을 출력할지 여부."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "모든 행 보기 허용"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7444,130 +7450,130 @@ msgstr ""
"다. 왜나하면 패스워드가 설정 파일에 적혀있기 때문입니다. 이 기능은 같은 명령"
"어를 직접 실행하는 것을 제한하는 기능은 없습니다."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "비밀번호 변경 폼 보기"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "데이터베이스 생성 폼 보기"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, 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:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "테이블 설명"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr "전체 테이블의 생성 시간을 표시하는 컬럼을 보이기/숨기기."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "생성 시간 보기"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr "모든 테이블에 대해 최종 업데이트 시간을 표시하는 컬럼을 보이기/숨기기."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "최종 업데이트 시간 표시"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr "모든 테이블에 대해 최종 체크 시간을 표시하는 컬럼을 보이기/숨기기."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "최종 체크 시간 표시"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr "편집/삽입 모드에서 타입 필드가 기본적으로 보일지 여부 정의."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "필드 타입 출력"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "편집/삽입 모드에서 함수 필드 보이기."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "함수 필드 보이기"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "힌트 보여주기 여부."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "힌트 보여주기"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
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:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "phpinfo()링크 표시"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "MYSQL 서버 정보 자세하게 표시"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "phpMyAdmin이 생성한 SQL 쿼리를 표시할지 여부를 정의."
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "SQL 쿼리 보기"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "쿼리 전송 후 쿼리 박스가 화면상에 남아있을지 여부."
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "쿼리 박스 유지"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr "데이터베이스와 테이블 상태 출력 허용 (사용량 등)."
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "통계보기"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "잠긴 테이블 건너띄기"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7575,11 +7581,11 @@ msgid ""
"detected."
msgstr "Suhosin이 발견될 경우 메인 페이지에 경고가 표시됩니다."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "수호신 경고"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7592,55 +7598,55 @@ msgstr ""
"테이블의 컬럼 이름이 MySQL 예약어일 경우 구조 페이지에서 출력되는 기본 경고"
"를 끄기."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "로그인 쿠키 유효시간"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "텍스트 편집 필드 칸 수"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr "텍스트 편집 필드 줄 수"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr "데이터베이스가 선택되었을 때 브라우저 창의 제목."
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "브라우저 윈도우 제목이 아무것도 선택되지 않았을때."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "기본 제목"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "서버가 선택되었을 때의 브라우저 윈도우의 제목."
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
#, 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:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7648,27 +7654,27 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "IP 허용/거부를 위한 신뢰할만한 프록시 목록"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr "가져오기 파일을 업로드할 서버 상의 디렉토리."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "업로드 디렉토리"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "전체 데이터베이스 내에서의 검색 허용."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "데이터베이스 검색 사용"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7676,26 +7682,26 @@ msgstr ""
"꺼져있을 경우, 사용자들은 오른쪽 체크박스에 관계없이 아래의 옵션 중 어느것도 "
"설정할 수 없습니다."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "설정화면에서 개발자 탭을 가능하게 함"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "최신 버전 확인"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "phpMyAdmin 메인 화면에서 최근 버전 확인을 활성화함."
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7707,30 +7713,30 @@ msgstr ""
"고 프록시를 거쳐야 하는 경우 필요합니다. 양식은 \"hostname:포트 번호\" 입니"
"다."
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "프록시 주소"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "프록시 사용자명"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "프록시를 이용한 인증에 사용할 암호입니다."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "프록시 암호"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7738,35 +7744,35 @@ msgstr ""
"가져오기와 내보내기 작업들에 대해 [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] 압축이 가능하게 함."
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr "당신의 도메인의 reCaptcha 서비스를 위한 공개키를 입력하세요."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "reCaptcha용 공개 키(Public key)"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr "당신의 도메인의 reCaptcha 서비스를 위한 개인키를 입력하세요."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "reCaptcha용 개인 키(Private key)"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "오류 보고를 전송하기 전 물어보기."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "오류보고서 전송"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7774,17 +7780,17 @@ msgstr ""
"질의는 (Ctrl+Enter 대신)Enter를 누르면 실행됩니다. 새 줄은 Shift+Enter로 입"
"력 가능합니다."
-#: libraries/config/messages.inc.php:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "제로-설정 모드를 활성화함"
@@ -7810,44 +7816,44 @@ msgstr "HTTP 인증"
msgid "Signon authentication"
msgstr "Signon 인증"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "LOAD DATA문을 이용한 CSV 들여오기"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Open Document 스프레드시트 형식"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "사용자 지정"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "데이터베이스 내보내기 옵션"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "MS엑셀 CSV 데이터"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "OpenDocument 형식"
@@ -13400,19 +13406,31 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "PHP 코드 보기"
-#: libraries/sql.lib.php:1765
-#, fuzzy
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
#| msgid ""
#| "This table 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"이 테이블에는 유일 속성을 가진 컬럼이 없습니다. 격자창 편집, 체크박스, 편집, "
"복사, 삭제 기능을 사용할 수 없습니다."
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| msgid ""
+#| "This table 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"
+msgstr ""
+"이 테이블에는 유일 속성을 가진 컬럼이 없습니다. 격자창 편집, 체크박스, 편집, "
+"복사, 삭제 기능을 사용할 수 없습니다."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -14723,6 +14741,10 @@ msgstr "설명:"
msgid "Drag to reorder"
msgstr "재정렬하려면 드래그하세요."
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "시작 행:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "컬럼 선택 (하나 이상):"
diff --git a/po/ksh.po b/po/ksh.po
index 425e1e05ef..fb98e35839 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-10-02 15:09+0200\n"
"Last-Translator: Purodha \n"
"Language-Team: Colognian %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr ""
@@ -3249,25 +3250,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3309,9 +3310,9 @@ msgstr[1] ""
msgstr[2] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3365,28 +3366,28 @@ msgstr ""
msgid "Search this table"
msgstr ""
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr ""
@@ -3395,8 +3396,9 @@ msgstr ""
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3492,16 +3494,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr ""
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3509,7 +3511,7 @@ msgstr ""
msgid "Check All"
msgstr ""
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr ""
@@ -3602,11 +3604,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3670,8 +3672,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3687,7 +3689,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -3699,16 +3701,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3720,10 +3722,10 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3731,19 +3733,19 @@ msgid "SQL"
msgstr ""
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr ""
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3752,7 +3754,7 @@ msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3761,21 +3763,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr ""
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3792,16 +3794,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3809,16 +3811,16 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr ""
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3826,38 +3828,38 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr ""
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr ""
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -3885,7 +3887,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4490,12 +4492,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4506,118 +4508,114 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr ""
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr ""
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr ""
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr ""
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr ""
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr ""
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr ""
@@ -4640,13 +4638,13 @@ msgstr ""
msgid "Rows"
msgstr "Reije"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5063,7 +5061,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -5731,10 +5729,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6178,7 +6176,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6373,829 +6371,837 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
msgid "Favorites table"
msgstr "Ein Tabäll"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
+msgid ""
+"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772
-msgid "Show statistics"
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+msgid "Retain query box"
msgstr ""
#: libraries/config/messages.inc.php:773
+msgid "Allow to display database and table statistics (eg. space usage)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:774
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7203,52 +7209,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7256,80 +7262,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7353,44 +7359,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr ""
@@ -12669,13 +12675,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -13882,6 +13896,10 @@ msgstr ""
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr ""
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/ky.po b/po/ky.po
index 6db233fe4c..89cdf5c62e 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-02-03 16:59+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Kyrgyz %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr ""
@@ -3270,25 +3271,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3328,9 +3329,9 @@ msgstr[0] ""
msgstr[1] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3384,28 +3385,28 @@ msgstr ""
msgid "Search this table"
msgstr ""
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr ""
@@ -3414,8 +3415,9 @@ msgstr ""
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3513,16 +3515,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr ""
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3530,7 +3532,7 @@ msgstr ""
msgid "Check All"
msgstr ""
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr ""
@@ -3625,11 +3627,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3693,8 +3695,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3710,7 +3712,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -3722,16 +3724,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3743,10 +3745,10 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3754,19 +3756,19 @@ msgid "SQL"
msgstr ""
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr ""
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3775,7 +3777,7 @@ msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3784,21 +3786,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr ""
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3815,16 +3817,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3832,18 +3834,18 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Value for the column \"%s\""
msgid "Central columns"
msgstr "\"%s\" мамычанын мааниси"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3851,38 +3853,38 @@ msgstr "\"%s\" мамычанын мааниси"
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr ""
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr ""
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -3907,7 +3909,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4510,12 +4512,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4526,118 +4528,114 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr ""
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr ""
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr ""
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr ""
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr ""
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr ""
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr ""
@@ -4660,13 +4658,13 @@ msgstr ""
msgid "Rows"
msgstr "катарлар"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5085,7 +5083,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -5753,10 +5751,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6200,7 +6198,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6395,835 +6393,843 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Value for the column \"%s\""
msgid "Central columns table"
msgstr "\"%s\" мамычанын мааниси"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "%s table"
#| msgid_plural "%s tables"
msgid "Favorites table"
msgstr "%s жадыбал"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments:"
msgid "Show table comments"
msgstr "Жадыбал жөнүндө маалымат:"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
+msgid ""
+"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772
-msgid "Show statistics"
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+msgid "Retain query box"
msgstr ""
#: libraries/config/messages.inc.php:773
+msgid "Allow to display database and table statistics (eg. space usage)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:774
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7231,52 +7237,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7284,80 +7290,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7381,44 +7387,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr ""
@@ -12718,13 +12724,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -13948,6 +13962,10 @@ msgstr ""
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr ""
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/li.po b/po/li.po
index 288f2ab1c2..15bf55cdb7 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-12-21 13:06+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -297,7 +297,7 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:125 db_tracking.php:287 libraries/Menu.class.php:247
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:798
#: 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
@@ -323,7 +323,7 @@ msgid "Updated"
msgstr ""
#: db_tracking.php:129 js/messages.php:237 libraries/Menu.class.php:551
-#: libraries/Util.class.php:4386 libraries/config.values.php:104
+#: libraries/Util.class.php:4391 libraries/config.values.php:104
#: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101
#: libraries/server_status_processes.lib.php:94 libraries/tracking.lib.php:278
msgid "Status"
@@ -506,8 +506,8 @@ msgstr ""
#: gis_data_editor.php:407 js/messages.php:286
#: libraries/DbSearch.class.php:467 libraries/DisplayResults.class.php:1807
-#: libraries/Util.class.php:4885 libraries/browse_foreigners.lib.php:142
-#: libraries/core.lib.php:610 libraries/display_change_password.lib.php:109
+#: 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_import.lib.php:392 libraries/index.lib.php:44
@@ -536,8 +536,9 @@ msgstr ""
#: libraries/tracking.lib.php:532 libraries/tracking.lib.php:652
#: prefs_manage.php:277 prefs_manage.php:355
#: templates/columns_definitions/column_definitions_form.phtml:59
-#: templates/index_form.phtml:238 templates/table/selection_form.phtml:75
-#: view_create.php:276 view_operations.php:106
+#: templates/index_form.phtml:238 templates/startAndNumberOfRowsPanel.phtml:14
+#: templates/table/selection_form.phtml:75 view_create.php:276
+#: view_operations.php:106
msgid "Go"
msgstr ""
@@ -641,7 +642,7 @@ msgstr ""
msgid "Could not load the progress of the import."
msgstr ""
-#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:735
+#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:738
#: libraries/export.lib.php:464
#: libraries/plugins/schema/Export_Relation_Schema.class.php:302
#: user_password.php:208
@@ -735,7 +736,7 @@ msgstr ""
msgid "Version information:"
msgstr ""
-#: index.php:392 libraries/Util.class.php:429 libraries/Util.class.php:490
+#: 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/navigation/NavigationHeader.class.php:197
@@ -837,7 +838,7 @@ msgid ""
"issues."
msgstr ""
-#: js/messages.php:38 libraries/import.lib.php:125 sql.php:151
+#: js/messages.php:38 libraries/import.lib.php:125 sql.php:161
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
@@ -1044,7 +1045,7 @@ msgstr ""
msgid "Matched rows:"
msgstr ""
-#: js/messages.php:114 libraries/Util.class.php:638
+#: js/messages.php:114 libraries/Util.class.php:641
msgid "SQL query:"
msgstr ""
@@ -1087,12 +1088,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:131 libraries/Util.class.php:1460
+#: js/messages.php:131 libraries/Util.class.php:1463
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:133 libraries/Util.class.php:1462
+#: js/messages.php:133 libraries/Util.class.php:1465
msgid "."
msgstr ","
@@ -1194,40 +1195,40 @@ msgid "Processes"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:167 libraries/Util.class.php:1404
+#: js/messages.php:167 libraries/Util.class.php:1407
msgid "B"
msgstr ""
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:168 libraries/Util.class.php:1406
+#: js/messages.php:168 libraries/Util.class.php:1409
#: libraries/server_status_monitor.lib.php:217
msgid "KiB"
msgstr "KiB"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:169 libraries/Util.class.php:1408
+#: js/messages.php:169 libraries/Util.class.php:1411
#: libraries/display_export.lib.php:702
#: libraries/server_status_monitor.lib.php:218
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:170 libraries/Util.class.php:1410
+#: js/messages.php:170 libraries/Util.class.php:1413
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:171 libraries/Util.class.php:1412
+#: js/messages.php:171 libraries/Util.class.php:1415
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:172 libraries/Util.class.php:1414
+#: js/messages.php:172 libraries/Util.class.php:1417
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:173 libraries/Util.class.php:1416
+#: js/messages.php:173 libraries/Util.class.php:1419
msgid "EiB"
msgstr "EiB"
@@ -1246,7 +1247,7 @@ msgid "Traffic"
msgstr ""
#: js/messages.php:179 libraries/Menu.class.php:585
-#: libraries/Util.class.php:4390 libraries/server_status_monitor.lib.php:257
+#: libraries/Util.class.php:4395 libraries/server_status_monitor.lib.php:257
msgid "Settings"
msgstr ""
@@ -1535,8 +1536,8 @@ msgstr ""
#: js/messages.php:264 libraries/Menu.class.php:350
#: libraries/Menu.class.php:453 libraries/Menu.class.php:581
-#: libraries/Util.class.php:4389 libraries/Util.class.php:4404
-#: libraries/Util.class.php:4421 libraries/config/messages.inc.php:236
+#: libraries/Util.class.php:4394 libraries/Util.class.php:4409
+#: libraries/Util.class.php:4426 libraries/config/messages.inc.php:236
#: libraries/display_import.lib.php:105
#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:238
#: setup/frames/menu.inc.php:26
@@ -1606,7 +1607,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: js/messages.php:290 libraries/Header.class.php:456
+#: js/messages.php:290 libraries/Header.class.php:455
msgid "Page-related settings"
msgstr ""
@@ -1683,7 +1684,7 @@ msgstr ""
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:314 libraries/Util.class.php:3234
+#: js/messages.php:314 libraries/Util.class.php:3237
msgid "Enable foreign key checks"
msgstr ""
@@ -1718,9 +1719,9 @@ msgstr ""
#: js/messages.php:328 libraries/DisplayResults.class.php:4857
#: libraries/DisplayResults.class.php:5115 libraries/Menu.class.php:342
#: libraries/Menu.class.php:444 libraries/Menu.class.php:577
-#: libraries/Util.class.php:3675 libraries/Util.class.php:3676
-#: libraries/Util.class.php:4388 libraries/Util.class.php:4403
-#: libraries/Util.class.php:4420 libraries/config/messages.inc.php:230
+#: libraries/Util.class.php:3680 libraries/Util.class.php:3681
+#: libraries/Util.class.php:4393 libraries/Util.class.php:4408
+#: libraries/Util.class.php:4425 libraries/config/messages.inc.php:230
#: libraries/display_export.lib.php:167 libraries/rte/rte_list.lib.php:146
#: libraries/server_privileges.lib.php:2085
#: libraries/server_privileges.lib.php:2164
@@ -1769,11 +1770,11 @@ msgstr ""
#: js/messages.php:343 libraries/Console.class.php:88
#: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3450
#: libraries/DisplayResults.class.php:4839 libraries/Index.class.php:723
-#: libraries/Util.class.php:664 libraries/Util.class.php:1218
-#: libraries/Util.class.php:3673 libraries/Util.class.php:3674
+#: libraries/Util.class.php:667 libraries/Util.class.php:1221
+#: 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:775
+#: libraries/config/messages.inc.php:777
#: libraries/server_user_groups.lib.php:119
#: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179
msgid "Edit"
@@ -2517,63 +2518,63 @@ msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1620
+#: js/messages.php:655 libraries/Util.class.php:1623
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1622
+#: js/messages.php:657 libraries/Util.class.php:1625
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1624
+#: js/messages.php:659 libraries/Util.class.php:1627
msgid "Mar"
msgstr "mrt"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1626
+#: js/messages.php:661 libraries/Util.class.php:1629
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1628
+#: js/messages.php:663 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:1630
+#: js/messages.php:665 libraries/Util.class.php:1633
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1632
+#: js/messages.php:667 libraries/Util.class.php:1635
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1634
+#: js/messages.php:669 libraries/Util.class.php:1637
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1636
+#: js/messages.php:671 libraries/Util.class.php:1639
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1638
+#: js/messages.php:673 libraries/Util.class.php:1641
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1640
+#: js/messages.php:675 libraries/Util.class.php:1643
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1642
+#: js/messages.php:677 libraries/Util.class.php:1645
msgid "Dec"
msgstr "dec"
@@ -2611,32 +2612,32 @@ msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1647
+#: js/messages.php:698 libraries/Util.class.php:1650
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1649
+#: js/messages.php:700 libraries/Util.class.php:1652
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1651
+#: js/messages.php:702 libraries/Util.class.php:1654
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1653
+#: js/messages.php:704 libraries/Util.class.php:1656
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1655
+#: js/messages.php:706 libraries/Util.class.php:1658
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1657
+#: js/messages.php:708 libraries/Util.class.php:1660
msgid "Sat"
msgstr ""
@@ -2778,7 +2779,7 @@ msgid "Please enter a valid HEX input"
msgstr ""
#: js/messages.php:785 libraries/Message.class.php:199
-#: libraries/Util.class.php:624 libraries/core.lib.php:245
+#: 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
msgid "Error"
@@ -2876,7 +2877,7 @@ msgid "Requery"
msgstr ""
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:790
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -2925,7 +2926,7 @@ msgstr ""
msgid "Explain"
msgstr ""
-#: libraries/Console.class.php:216 libraries/Util.class.php:1291
+#: libraries/Console.class.php:216 libraries/Util.class.php:1294
#: libraries/sql.lib.php:278
msgid "Profiling"
msgstr ""
@@ -3053,8 +3054,8 @@ msgstr ""
msgid "Count:"
msgstr ""
-#: libraries/Console.class.php:332 libraries/Util.class.php:1260
-#: libraries/config/messages.inc.php:777
+#: libraries/Console.class.php:332 libraries/Util.class.php:1263
+#: libraries/config/messages.inc.php:779
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3201,7 +3202,7 @@ msgstr ""
msgid "SQL query on database %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr ""
@@ -3225,25 +3226,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3283,9 +3284,9 @@ msgstr[0] ""
msgstr[1] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3339,28 +3340,28 @@ msgstr ""
msgid "Search this table"
msgstr ""
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr ""
@@ -3369,8 +3370,9 @@ msgstr ""
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3466,16 +3468,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr ""
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3483,7 +3485,7 @@ msgstr ""
msgid "Check All"
msgstr ""
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr ""
@@ -3576,11 +3578,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3644,8 +3646,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3661,7 +3663,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -3673,16 +3675,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3694,10 +3696,10 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3705,19 +3707,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr ""
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3726,7 +3728,7 @@ msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3735,21 +3737,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr ""
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3766,16 +3768,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3783,16 +3785,16 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr ""
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3800,38 +3802,38 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr ""
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr ""
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -3856,7 +3858,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4459,12 +4461,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4475,118 +4477,114 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr ""
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr ""
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr ""
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr ""
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr ""
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr ""
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr ""
@@ -4609,13 +4607,13 @@ msgstr ""
msgid "Rows"
msgstr ""
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5020,7 +5018,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -5688,10 +5686,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6135,7 +6133,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6330,828 +6328,836 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
+msgid ""
+"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772
-msgid "Show statistics"
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+msgid "Retain query box"
msgstr ""
#: libraries/config/messages.inc.php:773
+msgid "Allow to display database and table statistics (eg. space usage)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:774
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7159,52 +7165,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7212,80 +7218,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7309,44 +7315,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr ""
@@ -12610,13 +12616,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -13823,6 +13837,10 @@ msgstr ""
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr ""
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/lt.po b/po/lt.po
index 4f6d0ffa8f..838e8c1cad 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-02-15 18:57+0200\n"
"Last-Translator: Vytautas Motuzas \n"
"Language-Team: Lithuanian %s:"
msgstr "SQL-užklausa duomenų bazėje %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Vykdyti užklausą"
@@ -3644,7 +3645,7 @@ msgstr "Rodomos žymelės"
msgid "Delete bookmark"
msgstr "Ištrinti sąryšį"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3652,21 +3653,21 @@ msgid ""
"configured)."
msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)"
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Serveris neatsako"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Detalės…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3710,9 +3711,9 @@ msgstr[1] "%s atitikmenys lentelėse %s"
msgstr[2] "%s atitikmenų lentelėse %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3772,16 +3773,16 @@ msgstr "Filtrai"
msgid "Search this table"
msgstr "Paieška duomenų bazėje"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Pradžia"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3789,8 +3790,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Ankstesnis"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3798,8 +3799,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "Kitas"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3810,8 +3811,9 @@ msgstr "Pabaiga"
msgid "All"
msgstr "Viską"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Eilučių skaičius:"
@@ -3920,16 +3922,16 @@ msgid "Query took %01.4f seconds."
msgstr "Užklausa užtruko %01.4f sek."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Pasirinktus:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3937,7 +3939,7 @@ msgstr "Pasirinktus:"
msgid "Check All"
msgstr "Pažymėti visas"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Spausdinti struktūrą"
@@ -4042,11 +4044,11 @@ msgstr "Versija"
msgid "Open new phpMyAdmin window"
msgstr "Atverti naują phpMyAdmin langą"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4112,8 +4114,8 @@ msgstr "Panaikintas pirminis raktas."
msgid "Index %s has been dropped."
msgstr "Indeksas %s ištrintas."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4130,7 +4132,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:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Serveris"
@@ -4142,16 +4144,16 @@ msgid "View"
msgstr "Rodinys"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4163,10 +4165,10 @@ msgid "Structure"
msgstr "Struktūra"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4174,19 +4176,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Paieška"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4195,7 +4197,7 @@ msgid "Insert"
msgstr "Įterpti"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4204,21 +4206,21 @@ msgid "Privileges"
msgstr "Privilegijos"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Veiksmai"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Sekimas"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4235,16 +4237,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr "Duomenų bazė atrodo tuščia!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "SQL užklausa"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4252,18 +4254,18 @@ msgstr ""
msgid "Events"
msgstr "Įvykiai"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Projektavimas"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns"
msgstr "Textarea stulpeliai"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4271,38 +4273,38 @@ msgstr "Textarea stulpeliai"
msgid "Databases"
msgstr "Duomenų bazės"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Naudotojai"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Dvejetainis log'as"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replikavimas"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Kintamieji"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Koduotės"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Varikliai"
@@ -4330,7 +4332,7 @@ msgstr[0] "Įterpta %1$d eilutė."
msgstr[1] "Įterptos %1$d eilutės."
msgstr[2] "Įterpta %1$d eilučių."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4988,12 +4990,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Didžiausias dydis: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5004,28 +5006,28 @@ msgstr "Didžiausias dydis: %s%s"
msgid "MySQL said: "
msgstr "MySQL atsakymas: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Paaiškinti SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Praleisti SQL užklausos aiškinimą"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "be PHP kodo"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP kodas"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit mode"
msgctxt "Inline edit query"
@@ -5033,95 +5035,89 @@ msgid "Edit inline"
msgstr "Redagavimo režimas"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sek"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y m. %B %d d. %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s d., %s val., %s min. ir %s s"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Trūkstamas parametras:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Pereiti į „%s“ duomenų bazę."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s funkcionalumas paveiktas žinomos klaidos, žiūrėti %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Spustelėkite suskleidimui/atskleidimui"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Naršyti savo kompiuteryje:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Aplankas, kuris nurodytas įkeliamiems failams, nepasiekiamas."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no files to upload!"
msgstr "Nėra failų išsiuntimui"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Išvalyti"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Vykdyti"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Spausdinti"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Sukurta"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Paskutinis atnaujinimas"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Paskutinis patikrinimas"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start row"
-msgid "Start row:"
-msgstr "Pradėti eilute"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5146,13 +5142,13 @@ msgstr "Naudokite šią reikšmę"
msgid "Rows"
msgstr "Eilutės"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5605,7 +5601,7 @@ msgid "Set value: %s"
msgstr "Nustatyti reikšmę: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Atstatyti numatytąsias reikšmes"
@@ -6431,10 +6427,10 @@ msgstr "Adaptuoti naršymo režimą"
msgid "Customize default options."
msgstr "Pasirinkti numatytuosius nustatymus"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -7008,7 +7004,7 @@ 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:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Naudotojai negali nustatyti didesnės reikšmės"
@@ -7257,42 +7253,50 @@ msgstr ""
msgid "Where to show the table row links"
msgstr "Kur parodyti lentelės eilučių nuorodas"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
#, 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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Natūrali tvarka"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:531
#, 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:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Iconic navigation bar"
msgid "Table navigation bar"
msgstr "Piktograminė navigacijos juostelė"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
#, 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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip išvedimo buferis"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid ""
#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
@@ -7304,21 +7308,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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Numatytoji rikiavimo tvarka"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, 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:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Ilgalaikiai sujungimai"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7333,11 +7337,11 @@ msgstr ""
"puslapyje, kai neįmanoma rasti phpMyAdmin nustatymų saugyklai reikalingų "
"lentelių"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7351,11 +7355,11 @@ msgstr ""
"puslapyje, kai neįmanoma rasti phpMyAdmin nustatymų saugyklai reikalingų "
"lentelių"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7369,31 +7373,31 @@ msgstr ""
"puslapyje, kai neįmanoma rasti phpMyAdmin nustatymų saugyklai reikalingų "
"lentelių"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
#, 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:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
#, 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:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Apsaugoti dvejetainius stulpelius"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7403,21 +7407,21 @@ msgstr ""
"(reikalinga phpMyAdmin nustatymų saugykla). Jeigu išjungta, naudoja "
"JavaScript užklausų istorijai rodyti (prarandama uždarius langą)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Nuolatinė užklausų istorija"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
#, 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:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Užklausų istorijos ilgis"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
#, fuzzy
#| msgid "Select which functions will be used for character set conversion"
msgid "Select which functions will be used for character set conversion."
@@ -7425,31 +7429,31 @@ msgstr ""
"Pasirinkti kokios funkcijos bus naudojamos ženklų rinkinio (koduotės) "
"konvertavimui"
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Įrašymo varikliukas"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, 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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Įsiminti lentelės rūšiavimą"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Numatytoji rikiavimo tvarka"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
#, fuzzy
#| msgid ""
#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@@ -7457,112 +7461,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:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Pakartoti antraštes"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Ryšių rodymo stulpelis"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "Serverių rodymo nustatymai"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
#, 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:558
+#: libraries/config/messages.inc.php:560
#, 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:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Išsaugoti katalogą"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "Palikite tuščią, jei nenaudojamas"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
#, 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:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Leisti prisijungti be slaptažodžio"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Leisti prisijungti kaip root"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Sesijos reikšmė"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication method to use."
msgstr "Atpažinimo nustatymai"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Autentifikacijos tipas"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -7574,11 +7578,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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Pažymėti lentelę"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -7590,36 +7594,36 @@ msgstr ""
"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: "
"[kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Stulpelio informacinė lentelė"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, 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:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Naudoti suspaustą susijungimą"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
#, 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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Susijungimo tipas"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Kontroliuoti naudotojų slaptažodį"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7632,42 +7636,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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Kontroliuoti naudotoją"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "Kontroliuoti naudotoją"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Control user"
msgid "Control port"
msgstr "Kontroliuoti naudotoją"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
#, 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:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7675,15 +7679,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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Neleisti matyti INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Slėpti duomenų bazes"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7695,41 +7699,41 @@ msgstr ""
"Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: "
"[kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL užklausų žurnalo lentelė"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
#, 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:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Serverio adresas"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "Atsijungimo nuoroda"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Didžiausias skaičius išsaugomų lentelės nustatymų"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
#, 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:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7740,13 +7744,13 @@ msgstr ""
"Palikite tuščią jei nenorite PDF schemų palaikymo, siūlome: "
"[kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "Textarea stulpeliai"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -7758,17 +7762,17 @@ msgstr ""
"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: "
"[kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, 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:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Prisijungti be slaptažodžio"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
#, fuzzy
#| msgid ""
#| "You can use MySQL wildcard characters (% and _), escape them if you want "
@@ -7788,21 +7792,21 @@ msgstr ""
"ir pabaigoje nurodykite [kbd]*[/kbd], kad parodytumėte likusias abėcėlės "
"tvarka."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Rodyti tik šias duomenų bazes"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
#, 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:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7812,11 +7816,11 @@ msgstr ""
"Palikite tuščią jei nenorite PDF schemų palaikymo, siūlome: "
"[kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF schema: puslapių lentelė"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
@@ -7831,12 +7835,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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Duomenų bazės vardas"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
#, 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."
@@ -7844,11 +7848,11 @@ msgstr ""
"Jungtis per kurią MySQL serveris laukia atsakymo, palikite tuščią numatytam "
"nustatymui"
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Serverio jungtis"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -7859,11 +7863,11 @@ msgstr ""
"Palikite tuščią jeigu nenorite „įkyrių“ neseniai naudotų lentelių tarp "
"seansų, siūlome: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Paskiausiai naudota lentelė"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -7874,13 +7878,13 @@ msgstr ""
"Palikite tuščią jeigu nenorite „įkyrių“ neseniai naudotų lentelių tarp "
"seansų, siūlome: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Kintamieji"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -7892,11 +7896,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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Sąryšių lentelė"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -7908,35 +7912,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:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Prisijungimo sesijos vardas"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "Prisijungimo adresas"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
#, 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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Serverio prievadas (socket)"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Naudoti SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -7948,13 +7952,13 @@ msgstr ""
"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: "
"[kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
#, 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:695
+#: libraries/config/messages.inc.php:697
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -7966,11 +7970,11 @@ msgstr ""
"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: "
"[kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Rodyti lentelės stulpelius"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
#, fuzzy
#| msgid "blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgid ""
@@ -7980,49 +7984,49 @@ msgstr ""
"Jei tuščias nebus „įkyrių“ UI nustatymų tarp seansų, siūlome: "
"[kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Naudotojo sąsajos nustatymų lentelė"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Pridėti DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Pridėti DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Pridėti DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Sekamos užklausos"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -8034,21 +8038,21 @@ msgstr ""
"Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: "
"[kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL užklausų sekimo lentelė"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Automatiškai sukurti versijas"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -8059,37 +8063,37 @@ msgstr ""
"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: "
"[kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Naudoti lenteles"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Naudoti Host lentelę"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -8100,120 +8104,120 @@ msgstr ""
"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: "
"[kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Leisti rodyti visas eilutes (įrašus)"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Rodyti slaptažodžio keitimo formą"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Rodyti duomenų bazės sukūrimo formą"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Lentelės komentarai"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "Rodyti daugiau veiksmų"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Rodyti pagrindinio serverio būklę"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Rodyti laukelių tipus"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
#, 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:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Rodyti funkcijų laukelius"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
#, 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:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show indexes"
msgid "Show hint"
msgstr "Rodyti indeksus"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -8225,15 +8229,15 @@ msgstr ""
"Rodyti nuorodą į [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"išvedimą"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Rodyti phpinfo() nuorodą"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Rodyti išsamią MySQL serverio informaciją"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -8242,22 +8246,22 @@ msgid ""
msgstr ""
"Nustato kada turi būti rodomos SQL užklausos kurias sugeneravo phpMyAdmin"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Rodyti SQL užklausas"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 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:771
+#: libraries/config/messages.inc.php:773
#, fuzzy
#| msgid "Allow to display database and table statistics (eg. space usage)"
msgid "Allow to display database and table statistics (eg. space usage)."
@@ -8265,20 +8269,20 @@ msgstr ""
"Leisti rodyti duomenų bazių ir lentelių statistiką (pavyzdžiui vietos "
"naudojimą)"
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Rodyti statistika"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Praleisti užrakintas lenteles"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected"
msgid ""
@@ -8286,11 +8290,11 @@ msgid ""
"detected."
msgstr "Įspėjimas rodomas pagrindiniame puslapyje jeigu Suhosin yra aptinkamas"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin įspėjimas"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -8305,61 +8309,61 @@ msgstr ""
"puslapyje, kai neįmanoma rasti phpMyAdmin nustatymų saugyklai reikalingų "
"lentelių"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Prisijungimo slapuko galiojimas"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Textarea stulpeliai"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr "Textarea eilutės"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
#, 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:791
+#: libraries/config/messages.inc.php:793
#, 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:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Numatytasis pavadinimas"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
#, 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:795
+#: libraries/config/messages.inc.php:797
#, 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:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -8367,31 +8371,31 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Sąrašas patikimų proxy serverių IP leidimui/atmetimui"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
#, 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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Įkelties katalogas"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
#, 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:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Naudoti duomenų bazės paiešką"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid ""
#| "When disabled, users cannot set any of the options below, regardless of "
@@ -8403,29 +8407,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:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Patikrinti ar naujausia versija"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
#, 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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8433,34 +8437,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "Vartotojo vardas"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Slaptažodis"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8472,55 +8476,55 @@ msgstr ""
"Įjungia [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] glaudinimą "
"importo ir eksporto operacijoms"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "Serverio jungtis"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "Įvykdytos užklausos"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8548,46 +8552,46 @@ msgstr "HTTP autentifikacija"
msgid "Signon authentication"
msgstr "Prisijungimo tapatybės nustatymas"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV naudojant LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Open Document skaičiuoklė"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Greitas"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Pritaikytas"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Duomenų bazės eksportavimo nustatymai"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV formatas MS Excel programai"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -14447,13 +14451,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Rodomas PHP kodas"
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Iškilo problemos su `%s` lentelės indeksais"
@@ -15834,6 +15846,12 @@ msgstr "Komentaras"
msgid "Drag to reorder"
msgstr "Vilkite, kad pertvarkytumėte"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start row"
+msgid "Start row:"
+msgstr "Pradėti eilute"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Pasirinkite stulpelius (bent vieną):"
diff --git a/po/lv.po b/po/lv.po
index f88e5acdcb..29607f5479 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-04-04 18:47+0200\n"
"Last-Translator: Latvian TV \n"
"Language-Team: Latvian %s:"
msgstr "SQL vaicājums uz datubāzes %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Izpildīt vaicājumu"
@@ -3615,27 +3616,27 @@ msgstr "Rāda grāmatzīmi"
msgid "Delete bookmark"
msgstr "Meklēt"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Serveris neatbild"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3677,9 +3678,9 @@ msgstr[0] "%s rezultāti tabulā %s"
msgstr[1] "%s rezultāti tabulā %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3746,16 +3747,16 @@ msgstr "Filtrs"
msgid "Search this table"
msgstr "Meklēt datubāzē"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Sākums"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3763,8 +3764,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Iepriekšējie"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3772,8 +3773,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "Nākamie"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3784,8 +3785,9 @@ msgstr "Beigas"
msgid "All"
msgstr "Visi"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows:"
@@ -3901,16 +3903,16 @@ msgid "Query took %01.4f seconds."
msgstr "Vaicājums ilga %01.4f s"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Ar iezīmēto:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3918,7 +3920,7 @@ msgstr "Ar iezīmēto:"
msgid "Check All"
msgstr "Iezīmēt visu"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Izdrukas versija"
@@ -4020,11 +4022,11 @@ msgstr "Piekļuves informācija"
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4091,8 +4093,8 @@ msgstr "Primārā atslēga tika izdzēsta."
msgid "Index %s has been dropped."
msgstr "Indekss %s tika izdzēsts."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4108,7 +4110,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Serveris"
@@ -4120,16 +4122,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4141,10 +4143,10 @@ msgid "Structure"
msgstr "Struktūra"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4152,19 +4154,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Meklēt"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4173,7 +4175,7 @@ msgid "Insert"
msgstr "Pievienot"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4182,21 +4184,21 @@ msgid "Privileges"
msgstr "Privilēģijas"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Darbības"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4213,16 +4215,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Vaicājums pēc parauga"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4230,18 +4232,18 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns"
msgstr "Pievienot/Dzēst laukus (kolonnas)"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4249,41 +4251,41 @@ msgstr "Pievienot/Dzēst laukus (kolonnas)"
msgid "Databases"
msgstr "Datubāzes"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "Lietotājs"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Binārais log-fails"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
#, fuzzy
msgid "Replication"
msgstr "Relācijas"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Mainīgie"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Rakstzīmju kodējumi"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -4310,7 +4312,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "Rindas nav iezīmētas"
msgstr[1] "Rindas nav iezīmētas"
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4962,12 +4964,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Maksimālais izmērs: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4978,28 +4980,28 @@ msgstr "Maksimālais izmērs: %s%s"
msgid "MySQL said: "
msgstr "MySQL teica: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Izskaidrot SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Neizskaidrot SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Bez PHP koda"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Izveidot PHP kodu"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Add new field"
msgctxt "Inline edit query"
@@ -5007,96 +5009,90 @@ msgid "Edit inline"
msgstr "Pievienot jaunu lauku"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sv"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d.%m.%Y %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dienas, %s stundas, %s minūtes un %s sekundes"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "Pievienot jaunu lauku"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "pāriet pie datubāzes \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "web servera augšupielādes direktorija"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Iztukšot"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Drukāt"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Izveidošana"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Pēdējā atjaunošana"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Pēdējā pārbaude"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "S"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5121,13 +5117,13 @@ msgstr "Lietot šo vērtību"
msgid "Rows"
msgstr "Rindas"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5581,7 +5577,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6298,10 +6294,10 @@ msgstr ""
msgid "Customize default options."
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV dati"
@@ -6788,7 +6784,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6992,892 +6988,900 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Mainīt datu kārtošanas laukus"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Tabulas virsraksts"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Pārsaukt tabulu uz"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, 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:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "Relāciju shēma"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
msgid "For display Options"
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Sesijas vērtība"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Documentation"
msgid "Authentication method to use."
msgstr "Dokumentācija"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, 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:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
#, fuzzy
msgid "Connection type"
msgstr "Konekcijas"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Jebkurš hosts"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Jebkurš hosts"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
#, fuzzy
msgid "Hide databases"
msgstr "Nav datubāzu"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
#, fuzzy
msgid "Server hostname"
msgstr "Servera izvēle"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Pievienot/Dzēst laukus (kolonnas)"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Nemainīt paroli"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Datubāze"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
#, fuzzy
msgid "Server port"
msgstr "Servera ID"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analizēt tabulu"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Mainīgie"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
#, fuzzy
msgid "Relation table"
msgstr "Restaurēt tabulu"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
#, fuzzy
msgid "Server socket"
msgstr "Servera izvēle"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Rādu kolonnu komentārus"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Defragmentēt tabulu"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Parametrs"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
msgid "Automatically create versions"
msgstr "Servera versija"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Lietot tabulas"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Lietot hostu tabulu"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Komentārs tabulai"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Parādīt PHP informāciju"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
msgid "Show field types"
msgstr "Rādīt tabulas"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Rādīt režģi"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
#, fuzzy
msgid "Show SQL queries"
msgstr "Rādīt pilnos vaicājumus"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL vaicājums"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
#, fuzzy
msgid "Show statistics"
msgstr "Rindas statistika"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Pievienot/Dzēst laukus (kolonnas)"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Noklusēts"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7885,52 +7889,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7938,85 +7942,85 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
msgid "Proxy username"
msgstr "Lietotājvārds:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Parole"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
msgid "Send error reports"
msgstr "Servera ID"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL vaicājums"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Modifications have been saved"
msgid "Enable Zero Configuration mode"
@@ -8042,46 +8046,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Dokumentācija"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV dati MS Excel formātā"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -13922,13 +13926,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problēmas ar indeksiem tabulā `%s`"
@@ -15324,6 +15336,12 @@ msgstr "Komentāri"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "S"
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/mk.po b/po/mk.po
index 03fc3cbf5e..c44d1e1377 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-11-05 10:33+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Macedonian %s:"
msgstr "SQL упит на базата на податоци %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Изврши SQL"
@@ -3703,7 +3704,7 @@ msgstr "Пребарување"
msgid "Delete bookmark"
msgstr "Пребарување"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3711,21 +3712,21 @@ msgid ""
"configured)."
msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)"
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Серверот не одговара"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3767,9 +3768,9 @@ msgstr[0] "%s погодоци во табелата %s"
msgstr[1] "%s погодоци во табелата %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3836,16 +3837,16 @@ msgstr "Полиња"
msgid "Search this table"
msgstr "Пребарување низ базата на податоци"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Почеток"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3853,8 +3854,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Претходна"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3862,8 +3863,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "Следен"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3874,8 +3875,9 @@ msgstr "Крај"
msgid "All"
msgstr "Се"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows:"
@@ -3993,16 +3995,16 @@ msgid "Query took %01.4f seconds."
msgstr "време на извршување на упитот %01.4f секунди"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Обележаното:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -4010,7 +4012,7 @@ msgstr "Обележаното:"
msgid "Check All"
msgstr "обележи ги сите"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Преглед за печатење"
@@ -4115,11 +4117,11 @@ msgstr "Информации за верзијата"
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4186,8 +4188,8 @@ msgstr "Примарниот клуч е избришан."
msgid "Index %s has been dropped."
msgstr "Клучот %s е избиршан."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4203,7 +4205,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Сервер"
@@ -4215,16 +4217,16 @@ msgid "View"
msgstr "Поглед"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4236,10 +4238,10 @@ msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4247,19 +4249,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Пребарување"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4268,7 +4270,7 @@ msgid "Insert"
msgstr "Нов запис"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4277,21 +4279,21 @@ msgid "Privileges"
msgstr "Привилегии"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Операции"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4308,16 +4310,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Упит по пример"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Рутини"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4325,18 +4327,18 @@ msgstr "Рутини"
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns"
msgstr "Додади/избриши колона"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4344,41 +4346,41 @@ msgstr "Додади/избриши колона"
msgid "Databases"
msgstr "База на податоци"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "Корисник"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Бинарен дневник"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
#, fuzzy
msgid "Replication"
msgstr "Релации"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Променливи"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Кодни страници"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Складишта"
@@ -4405,7 +4407,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "Нема селектирани записи"
msgstr[1] "Нема селектирани записи"
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -5057,12 +5059,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Максимална големина: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5073,28 +5075,28 @@ msgstr "Максимална големина: %s%s"
msgid "MySQL said: "
msgstr "MySQL порака: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Објасни SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Прескокни ги објаснувањата на SQL-от"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "без PHP код"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Направи PHP код"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Add new field"
msgctxt "Inline edit query"
@@ -5102,96 +5104,90 @@ msgid "Edit inline"
msgstr "Додади ново поле"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Нед"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. во %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s денови, %s часови, %s минути и %s секунди"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Рутини"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Премин на базата \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "директориум за праќање на веб серверот "
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Директориумот кој го избравте за праќање не е достапен."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Испразни"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Печати"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Направено"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Последна измена"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Последна проверка"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "Саб"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5216,13 +5212,13 @@ msgstr "Користи ја оваа вредност"
msgid "Rows"
msgstr "Записи"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Податоци"
@@ -5675,7 +5671,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6395,10 +6391,10 @@ msgstr "Режим на автоматско опоравување"
msgid "Customize default options."
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV формат"
@@ -6888,7 +6884,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -7093,897 +7089,905 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Промени го редоследот во табелата"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Коментар на табела"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Промени го името на табелата во "
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "Примарниот клуч %s е додаден."
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Нишки на поправка"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "Релациона шема"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
msgid "For display Options"
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
#, fuzzy
msgid "Save directory"
msgstr "Основен директориум на податоците"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Вредност на сесијата"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Documentation"
msgid "Authentication method to use."
msgstr "Документација"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Не можам да се пријавам на MySQL серверот"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
#, fuzzy
msgid "Connection type"
msgstr "Конекции"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Било кој host"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Било кој host"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
#, fuzzy
msgid "Hide databases"
msgstr "Базата на податоци не постои"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
#, fuzzy
msgid "Server hostname"
msgstr "Избор на сервер"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Додади/избриши колона"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Немој да ја менуваш лозинката"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "База на податоци"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
#, fuzzy
msgid "Server port"
msgstr "ID на серверот"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Анализа на табелата"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Променливи"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
#, fuzzy
msgid "Relation table"
msgstr "Поправка на табелата"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
#, fuzzy
msgid "Server socket"
msgstr "Избор на сервер"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, fuzzy
msgid "Enable SSL for connection to MySQL server."
msgstr ""
"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за "
"еден час."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Прикажувам коментари на колоните"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Дефрагментирај ја табелата"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Име"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Режим на автоматско опоравување"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Користи табели"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Користи ја табелата на host-от"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Коментар на табелата"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Прикажи информации за PHP"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
msgid "Show field types"
msgstr "Прикажи табели"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Прикажи мрежа"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
#, fuzzy
msgid "Show SQL queries"
msgstr "Прикажи комплетни упити"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL упит"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
#, fuzzy
msgid "Show statistics"
msgstr "Статистики за записите"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Додади/избриши колона"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Default"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7991,52 +7995,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8044,85 +8048,85 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
msgid "Proxy username"
msgstr "Корисничко име:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Лозинка"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
msgid "Send error reports"
msgstr "ID на серверот"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL упит"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Modifications have been saved"
msgid "Enable Zero Configuration mode"
@@ -8148,46 +8152,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Документација"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV за MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -14082,13 +14086,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем при индексирање на табелата `%s`"
@@ -15481,6 +15493,12 @@ msgstr "Коментари"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "Саб"
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/ml.po b/po/ml.po
index 6fb7089b64..f92ac747d8 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-02-27 10:56+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Malayalam %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "അഭ്യർത്ഥന സമർപ്പിക്കുക"
@@ -3304,25 +3305,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3362,9 +3363,9 @@ msgstr[0] ""
msgstr[1] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3422,28 +3423,28 @@ msgstr "തരംതിരിക്കുക"
msgid "Search this table"
msgstr "ഈ വില ഉപയോഗിക്കൂ"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr ""
@@ -3452,8 +3453,9 @@ msgstr ""
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3555,16 +3557,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr ""
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3572,7 +3574,7 @@ msgstr ""
msgid "Check All"
msgstr ""
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr ""
@@ -3667,11 +3669,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3735,8 +3737,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3752,7 +3754,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -3764,16 +3766,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3785,10 +3787,10 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3796,19 +3798,19 @@ msgid "SQL"
msgstr ""
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "തിരയൂ"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3817,7 +3819,7 @@ msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3826,21 +3828,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr ""
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3857,16 +3859,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3874,18 +3876,18 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Central columns"
msgstr "നിരകൾ ചേർക്കുക/മായക്കുക"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3893,38 +3895,38 @@ msgstr "നിരകൾ ചേർക്കുക/മായക്കുക"
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr ""
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr ""
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -3949,7 +3951,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4563,12 +4565,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4579,120 +4581,114 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr ""
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr ""
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "അച്ചടിക്കുക"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "സൃഷ്ടി"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "അവസാനം നവീകരിച്ചത്"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "അന്തിമ പരിശോധന"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Sort"
-msgid "Start row:"
-msgstr "തരംതിരിക്കുക"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -4717,13 +4713,13 @@ msgstr "ഈ വില ഉപയോഗിക്കൂ"
msgid "Rows"
msgstr "വരികൾ"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5144,7 +5140,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -5816,10 +5812,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6271,7 +6267,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6472,840 +6468,848 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table comments"
msgid "Table navigation bar"
msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Table comments"
msgid "For display Options"
msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Central columns table"
msgstr "നിരകൾ ചേർക്കുക/മായക്കുക"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Show all"
msgid "Favorites table"
msgstr "എല്ലാം കാണിക്കൂ"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "പട്ടികകൾ ഉപയോഗിക്കുക"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
+msgid ""
+"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772
-msgid "Show statistics"
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+msgid "Retain query box"
msgstr ""
#: libraries/config/messages.inc.php:773
+msgid "Allow to display database and table statistics (eg. space usage)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:774
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7313,52 +7317,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7366,80 +7370,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7463,44 +7467,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr ""
@@ -12861,13 +12865,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -14112,6 +14124,12 @@ msgstr "അഭിപ്രായങ്ങൾ"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Sort"
+msgid "Start row:"
+msgstr "തരംതിരിക്കുക"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/mn.po b/po/mn.po
index 0259bc26c0..35b4dd99ce 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-11-05 10:28+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Mongolian %s:"
msgstr "ӨС %s дахь SQL-асуулт:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Асуултыг илгээх"
@@ -3767,7 +3768,7 @@ msgstr "Хавчуургыг харуулж байна"
msgid "Delete bookmark"
msgstr "Холбоог устгах"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3775,21 +3776,21 @@ msgid ""
"configured)."
msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)"
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сервэрээс хариу алга"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3831,9 +3832,9 @@ msgstr[0] "%s олдоц(ууд) хүснэгт %s-д"
msgstr[1] "%s олдоц(ууд) хүснэгт %s-д"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3900,16 +3901,16 @@ msgstr "Файлууд"
msgid "Search this table"
msgstr "Өгөгдлийн санд хайх"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Эхлэл"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3917,8 +3918,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Өмнөх"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3926,8 +3927,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "Цааш"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3938,8 +3939,9 @@ msgstr "Төгс"
msgid "All"
msgstr "Бүх"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows:"
@@ -4052,16 +4054,16 @@ msgid "Query took %01.4f seconds."
msgstr "Асуулт нь %01.4f сек авлаа"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Сонгогдсонтой:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -4069,7 +4071,7 @@ msgstr "Сонгогдсонтой:"
msgid "Check All"
msgstr "Бүгдийг чагтлах"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Хэвлэхээр харах"
@@ -4172,11 +4174,11 @@ msgstr "Хувилбарын мэдээлэл"
msgid "Open new phpMyAdmin window"
msgstr "Шинэ phpMyAdmin цонх нээх"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4242,8 +4244,8 @@ msgstr "Үндсэн түлхүүр устгагдлаа."
msgid "Index %s has been dropped."
msgstr "Индекс %s нь устгагдсан."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4259,7 +4261,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Сервэр"
@@ -4271,16 +4273,16 @@ msgid "View"
msgstr "Харц"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4292,10 +4294,10 @@ msgid "Structure"
msgstr "Бүтэц"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4303,19 +4305,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Хайх"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4324,7 +4326,7 @@ msgid "Insert"
msgstr "Оруулах"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4333,21 +4335,21 @@ msgid "Privileges"
msgstr "Онцгой эрхүүд"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Үйлдлүүд"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4364,16 +4366,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr "Өгөгдлийн сан хоосон санагдаж байна!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Асуулт (Query)"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4381,18 +4383,18 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Дизайнч"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns"
msgstr "Багана нэмэх/устгах"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4400,40 +4402,40 @@ msgstr "Багана нэмэх/устгах"
msgid "Databases"
msgstr "Өгөгдлийн сангууд"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "Хэрэглэгч"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Хоёртын log"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Олшруулалт"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Утгууд"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Кодлолууд"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Хөдөлгүүрүүд"
@@ -4460,7 +4462,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "Сонгогдсон мөргүй"
msgstr[1] "Сонгогдсон мөргүй"
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -5118,12 +5120,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "ХИ хэмжээ: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5134,28 +5136,28 @@ msgstr "ХИ хэмжээ: %s%s"
msgid "MySQL said: "
msgstr "MySQL хэлэх нь: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "SQL тайлбар"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "SQL тайлбарлахыг орхих"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "PHP-кодгүй"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP-код үүсгэх"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Add new field"
msgctxt "Inline edit query"
@@ -5163,96 +5165,90 @@ msgid "Edit inline"
msgstr "Шинэ талбар нэмэх"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ня"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y оны %B сарын %d., %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s өдөр, %s цаг, %s минут, %s секунд"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "Шинэ талбар нэмэх"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "\"%s\" өгөгдлийн сан руу үсрэх."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "web-сервэр түлхэх хавтас"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Хоосон"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Хэвлэх"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Үүсгэлт"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Сүүлийн шинэчлэл"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Сүүлийн шалгалт"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Showing rows"
-msgid "Start row:"
-msgstr "Мөрүүдийг харуулж байна "
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5277,13 +5273,13 @@ msgstr "Уг утгыг хэрэглэх"
msgid "Rows"
msgstr "Мөрүүд"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Өгөгдөл"
@@ -5742,7 +5738,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6457,10 +6453,10 @@ msgstr "Авто сэргээх горим"
msgid "Customize default options."
msgstr "Асуудлын үр дүнгийн үйлдэл"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6956,7 +6952,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -7161,890 +7157,898 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Хүснэгтийг эрэмбэлэлтээр өөрчлөх"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Хүснэгтийн гарчиг"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Хүснэгтийг да.нэрлэх"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "%s-д үндсэн түлхүүр нэмэгдлээ"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Thread засах"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "Хамааралтай схем"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Relational schema"
msgid "For display Options"
msgstr "Хамааралтай схем"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Сессон утга"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Documentation"
msgid "Authentication method to use."
msgstr "Баримт"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "MySQL руу нэвтэрч чадсангүй"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Дурын хост"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Дурын хост"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Багана нэмэх/устгах"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Нууц үгийг солихгүй"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "өгөгдлийн сангийн нэр"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Хүснэгтийг задлах"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Утгууд"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Баганын тайлбарыг харуулж байна"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Хүснэгт янзлах"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Баримтжуулал"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Авто сэргээх горим"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Хүснэгт хэрэглэх"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Хост хүснэгт хэрэглэх"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Хүснэгтийн тайлбар"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "PHP -ийн мэдээлэл харах"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Нээлттэй хүснэгтүүдийг харуулах"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Тор харуулах"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
+msgstr ""
+
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
+msgstr ""
+
+#: libraries/config/messages.inc.php:771
+msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "in query"
msgid "Retain query box"
msgstr "асуултад"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Багана нэмэх/устгах"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Анхдагч"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -8052,52 +8056,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8105,86 +8109,86 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username:"
msgid "Proxy username"
msgstr "Нэвтрэгч:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Нууц үг"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Execute bookmarked query"
msgid "Enter executes queries in console"
msgstr "Тэмдэглэгдсэн асуулт ажиллуулах"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Enable Zero Configuration mode"
@@ -8210,48 +8214,48 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV хэрэглэх нь LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Баримт"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
#, fuzzy
#| msgid "Database export options"
msgid "Database export options"
msgstr "ӨС гаргах сонголтууд"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV өгөгдлийг MS Excel-ээр"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -14216,13 +14220,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "PHP кодоор харуулах"
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Хүснэгт `%s`-ийн индекс асуудалтай"
@@ -15614,6 +15626,12 @@ msgstr "Тайлбар"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Showing rows"
+msgid "Start row:"
+msgstr "Мөрүүдийг харуулж байна "
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/ms.po b/po/ms.po
index 2c9aeec882..7cc2074493 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-11-05 10:35+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Malay %s:"
msgstr "SQL- kueri pada pangkalan data %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Hantar Kueri"
@@ -3649,25 +3650,25 @@ msgstr "Memaparkan penanda halaman"
msgid "Delete bookmark"
msgstr "Cari"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3707,9 +3708,9 @@ msgstr[0] "%s padanan di dalam jadual %s"
msgstr[1] "%s padanan di dalam jadual %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3768,16 +3769,16 @@ msgstr "Medan"
msgid "Search this table"
msgstr "Cari di pangkalan data"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Mula"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3785,8 +3786,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Terdahulu"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3794,8 +3795,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "Berikut"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3806,8 +3807,9 @@ msgstr "Tamat"
msgid "All"
msgstr "Semua"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows:"
@@ -3919,16 +3921,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Dengan pilihan:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3936,7 +3938,7 @@ msgstr "Dengan pilihan:"
msgid "Check All"
msgstr "Tanda Semua"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Paparan Cetak"
@@ -4036,11 +4038,11 @@ msgstr "Informasi MasaJana"
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4107,8 +4109,8 @@ msgstr "Kekunci utama telah digugurkan."
msgid "Index %s has been dropped."
msgstr "Indeks %s telah digugurkan."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4124,7 +4126,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Pelayan"
@@ -4136,16 +4138,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4157,10 +4159,10 @@ msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4168,19 +4170,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Cari"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4189,7 +4191,7 @@ msgid "Insert"
msgstr "Selit"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4198,21 +4200,21 @@ msgid "Privileges"
msgstr "Privilej"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operasi"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4229,16 +4231,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Kueri"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4246,18 +4248,18 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns"
msgstr "Tambah/Padam Kolum Medan"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4265,41 +4267,41 @@ msgstr "Tambah/Padam Kolum Medan"
msgid "Databases"
msgstr "pangkalan data"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "Pengguna"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
#, fuzzy
msgid "Binary log"
msgstr "Binari"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replikasi"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Pemboleh-pembolehubah"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -4324,7 +4326,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4966,12 +4968,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4982,28 +4984,28 @@ msgstr ""
msgid "MySQL said: "
msgstr "MySQL berkata: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Terangkan Kod SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Tanpa Kod PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Cipta Kod PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Print view"
msgctxt "Inline edit query"
@@ -5011,94 +5013,88 @@ msgid "Edit inline"
msgstr "Paparan Cetak"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Aha"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s hari, %s jam, %s minit dan %s saat"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "direktori muatnaik pelayan-web"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Kosong"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Cetak"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Mewujudkan"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Kemaskini terakhir"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Semakan Terakhir"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "Sab"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5123,13 +5119,13 @@ msgstr "Guna nilai ini"
msgid "Rows"
msgstr "Baris"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5578,7 +5574,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6287,10 +6283,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "data CSV"
@@ -6765,7 +6761,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6968,886 +6964,894 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Alter table order by"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table of contents"
msgid "Table navigation bar"
msgstr "Kandungan"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Tukarnama jadual ke"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, 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:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "Skema Hubungan"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
msgid "For display Options"
msgstr "Statistik pangkalan data"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Nilai Sessi"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Documentation"
msgid "Authentication method to use."
msgstr "Dokumentasi"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, 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:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
#, fuzzy
msgid "Connection type"
msgstr "Hubungan"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Sebarang hos"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Sebarang hos"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
#, fuzzy
msgid "Hide databases"
msgstr "Tiada pangkalan data"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
#, fuzzy
msgid "Server hostname"
msgstr "Pilihan Pelayan"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Tambah/Padam Kolum Medan"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Jangan tukar katalaluan"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Pangkalan Data"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
#, fuzzy
msgid "Server port"
msgstr "Pilihan Pelayan"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analyze table"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Pemboleh-pembolehubah"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
#, fuzzy
msgid "Relation table"
msgstr "Baiki jadual"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
#, fuzzy
msgid "Server socket"
msgstr "Pilihan Pelayan"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Memaparkan Komen Kolum"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Penyataan"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
msgid "Automatically create versions"
msgstr "Versi Pelayan"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Guna Jadual"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Komen jadual"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Papar maklumat PHP"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
msgid "Show field types"
msgstr "Papar jadual"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Papar grid"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
+msgstr ""
+
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
+msgstr ""
+
+#: libraries/config/messages.inc.php:771
+msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "kueri-SQL"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
#, fuzzy
msgid "Show statistics"
msgstr "Statistik Baris"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Tambah/Padam Kolum Medan"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Asal"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7855,52 +7859,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7908,84 +7912,84 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
msgid "Proxy username"
msgstr "Namapengguna:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Katalaluan"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
msgid "Send error reports"
msgstr "Pilihan Pelayan"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Modifications have been saved"
msgid "Enable Zero Configuration mode"
@@ -8011,47 +8015,47 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Dokumentasi"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
#, fuzzy
msgid "Database export options"
msgstr "Statistik pangkalan data"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV untuk sata MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -13732,13 +13736,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -15101,6 +15113,12 @@ msgstr "Komen"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "Sab"
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/nb.po b/po/nb.po
index bbe497832c..e0fa863eb2 100644
--- a/po/nb.po
+++ b/po/nb.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-06-22 04:13+0200\n"
"Last-Translator: Sebastian \n"
-"Language-Team: Norwegian Bokmål "
-"\n"
+"Language-Team: Norwegian Bokmål \n"
"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -299,7 +299,7 @@ msgid "Tracked tables"
msgstr "Overvåkede tabeller"
#: db_tracking.php:125 db_tracking.php:287 libraries/Menu.class.php:247
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:798
#: 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
@@ -325,7 +325,7 @@ msgid "Updated"
msgstr "Oppdatert"
#: db_tracking.php:129 js/messages.php:237 libraries/Menu.class.php:551
-#: libraries/Util.class.php:4386 libraries/config.values.php:104
+#: libraries/Util.class.php:4391 libraries/config.values.php:104
#: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101
#: libraries/server_status_processes.lib.php:94 libraries/tracking.lib.php:278
msgid "Status"
@@ -511,8 +511,8 @@ msgstr "Legg til geometri"
#: gis_data_editor.php:407 js/messages.php:286
#: libraries/DbSearch.class.php:467 libraries/DisplayResults.class.php:1807
-#: libraries/Util.class.php:4885 libraries/browse_foreigners.lib.php:142
-#: libraries/core.lib.php:610 libraries/display_change_password.lib.php:109
+#: 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_import.lib.php:392 libraries/index.lib.php:44
@@ -541,8 +541,9 @@ msgstr "Legg til geometri"
#: libraries/tracking.lib.php:532 libraries/tracking.lib.php:652
#: prefs_manage.php:277 prefs_manage.php:355
#: templates/columns_definitions/column_definitions_form.phtml:59
-#: templates/index_form.phtml:238 templates/table/selection_form.phtml:75
-#: view_create.php:276 view_operations.php:106
+#: templates/index_form.phtml:238 templates/startAndNumberOfRowsPanel.phtml:14
+#: templates/table/selection_form.phtml:75 view_create.php:276
+#: view_operations.php:106
msgid "Go"
msgstr "Gjør"
@@ -663,7 +664,7 @@ msgstr ""
msgid "Could not load the progress of the import."
msgstr "Kan ikke laste importprogresjon."
-#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:735
+#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:738
#: libraries/export.lib.php:464
#: libraries/plugins/schema/Export_Relation_Schema.class.php:302
#: user_password.php:208
@@ -760,7 +761,7 @@ msgstr "Vis PHP-informasjon"
msgid "Version information:"
msgstr "Versjonsinformasjon:"
-#: index.php:392 libraries/Util.class.php:429 libraries/Util.class.php:490
+#: 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/navigation/NavigationHeader.class.php:197
@@ -891,7 +892,7 @@ msgstr ""
"Tjeneren kjører med Suhosin. Sjekk %sdokumentasjonen%s for potensielle "
"problemer."
-#: js/messages.php:38 libraries/import.lib.php:125 sql.php:151
+#: js/messages.php:38 libraries/import.lib.php:125 sql.php:161
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\"-uttrykk er avslått."
@@ -1102,7 +1103,7 @@ msgstr "Simuler spørring"
msgid "Matched rows:"
msgstr "Matchede rader:"
-#: js/messages.php:114 libraries/Util.class.php:638
+#: js/messages.php:114 libraries/Util.class.php:641
msgid "SQL query:"
msgstr "SQL-spørring:"
@@ -1145,12 +1146,12 @@ msgid "Other"
msgstr "Annet"
#. l10n: Thousands separator
-#: js/messages.php:131 libraries/Util.class.php:1460
+#: js/messages.php:131 libraries/Util.class.php:1463
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:133 libraries/Util.class.php:1462
+#: js/messages.php:133 libraries/Util.class.php:1465
msgid "."
msgstr ","
@@ -1257,40 +1258,40 @@ msgid "Processes"
msgstr "Prosesser"
#. l10n: shortcuts for Byte
-#: js/messages.php:167 libraries/Util.class.php:1404
+#: js/messages.php:167 libraries/Util.class.php:1407
msgid "B"
msgstr "B"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:168 libraries/Util.class.php:1406
+#: js/messages.php:168 libraries/Util.class.php:1409
#: libraries/server_status_monitor.lib.php:217
msgid "KiB"
msgstr "KiB"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:169 libraries/Util.class.php:1408
+#: js/messages.php:169 libraries/Util.class.php:1411
#: libraries/display_export.lib.php:702
#: libraries/server_status_monitor.lib.php:218
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:170 libraries/Util.class.php:1410
+#: js/messages.php:170 libraries/Util.class.php:1413
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:171 libraries/Util.class.php:1412
+#: js/messages.php:171 libraries/Util.class.php:1415
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:172 libraries/Util.class.php:1414
+#: js/messages.php:172 libraries/Util.class.php:1417
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:173 libraries/Util.class.php:1416
+#: js/messages.php:173 libraries/Util.class.php:1419
msgid "EiB"
msgstr "EiB"
@@ -1309,7 +1310,7 @@ msgid "Traffic"
msgstr "Trafikk"
#: js/messages.php:179 libraries/Menu.class.php:585
-#: libraries/Util.class.php:4390 libraries/server_status_monitor.lib.php:257
+#: libraries/Util.class.php:4395 libraries/server_status_monitor.lib.php:257
msgid "Settings"
msgstr "Innstillinger"
@@ -1620,8 +1621,8 @@ msgstr ""
#: js/messages.php:264 libraries/Menu.class.php:350
#: libraries/Menu.class.php:453 libraries/Menu.class.php:581
-#: libraries/Util.class.php:4389 libraries/Util.class.php:4404
-#: libraries/Util.class.php:4421 libraries/config/messages.inc.php:236
+#: libraries/Util.class.php:4394 libraries/Util.class.php:4409
+#: libraries/Util.class.php:4426 libraries/config/messages.inc.php:236
#: libraries/display_import.lib.php:105
#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:238
#: setup/frames/menu.inc.php:26
@@ -1691,7 +1692,7 @@ msgstr "Formaterer SQL..."
msgid "Cancel"
msgstr "Avbryt"
-#: js/messages.php:290 libraries/Header.class.php:456
+#: js/messages.php:290 libraries/Header.class.php:455
msgid "Page-related settings"
msgstr "Side-relaterte innstillinger"
@@ -1768,7 +1769,7 @@ msgstr "Kopierer database"
msgid "Changing Charset"
msgstr "Endrer tegnsett"
-#: js/messages.php:314 libraries/Util.class.php:3234
+#: js/messages.php:314 libraries/Util.class.php:3237
msgid "Enable foreign key checks"
msgstr "Slå på kontroll av fremmednøkler"
@@ -1803,9 +1804,9 @@ msgstr "Definisjonen av en lagret funksjon må inneholde RETURN erklæring!"
#: js/messages.php:328 libraries/DisplayResults.class.php:4857
#: libraries/DisplayResults.class.php:5115 libraries/Menu.class.php:342
#: libraries/Menu.class.php:444 libraries/Menu.class.php:577
-#: libraries/Util.class.php:3675 libraries/Util.class.php:3676
-#: libraries/Util.class.php:4388 libraries/Util.class.php:4403
-#: libraries/Util.class.php:4420 libraries/config/messages.inc.php:230
+#: libraries/Util.class.php:3680 libraries/Util.class.php:3681
+#: libraries/Util.class.php:4393 libraries/Util.class.php:4408
+#: libraries/Util.class.php:4425 libraries/config/messages.inc.php:230
#: libraries/display_export.lib.php:167 libraries/rte/rte_list.lib.php:146
#: libraries/server_privileges.lib.php:2085
#: libraries/server_privileges.lib.php:2164
@@ -1856,11 +1857,11 @@ msgstr "Vis spørringsboks"
#: js/messages.php:343 libraries/Console.class.php:88
#: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3450
#: libraries/DisplayResults.class.php:4839 libraries/Index.class.php:723
-#: libraries/Util.class.php:664 libraries/Util.class.php:1218
-#: libraries/Util.class.php:3673 libraries/Util.class.php:3674
+#: libraries/Util.class.php:667 libraries/Util.class.php:1221
+#: 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:775
+#: libraries/config/messages.inc.php:777
#: libraries/server_user_groups.lib.php:119
#: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179
msgid "Edit"
@@ -2642,63 +2643,63 @@ msgid "December"
msgstr "Desember"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1620
+#: js/messages.php:655 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1622
+#: js/messages.php:657 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1624
+#: js/messages.php:659 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1626
+#: js/messages.php:661 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1628
+#: js/messages.php:663 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:1630
+#: js/messages.php:665 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1632
+#: js/messages.php:667 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1634
+#: js/messages.php:669 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1636
+#: js/messages.php:671 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1638
+#: js/messages.php:673 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1640
+#: js/messages.php:675 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1642
+#: js/messages.php:677 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Des"
@@ -2736,32 +2737,32 @@ msgid "Sun"
msgstr "Søn"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1647
+#: js/messages.php:698 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Man"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1649
+#: js/messages.php:700 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Tir"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1651
+#: js/messages.php:702 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1653
+#: js/messages.php:704 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Tor"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1655
+#: js/messages.php:706 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1657
+#: js/messages.php:708 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Lør"
@@ -2911,7 +2912,7 @@ msgid "Please enter a valid HEX input"
msgstr "Vennligst tast inn et gyldig tall!"
#: js/messages.php:785 libraries/Message.class.php:199
-#: libraries/Util.class.php:624 libraries/core.lib.php:245
+#: 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
msgid "Error"
@@ -3011,7 +3012,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:790
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3060,7 +3061,7 @@ msgstr "Gjennom gjeldende sesjon"
msgid "Explain"
msgstr "Forklar"
-#: libraries/Console.class.php:216 libraries/Util.class.php:1291
+#: libraries/Console.class.php:216 libraries/Util.class.php:1294
#: libraries/sql.lib.php:278
msgid "Profiling"
msgstr "Profilering"
@@ -3209,8 +3210,8 @@ msgstr "Skjul panel"
msgid "Count:"
msgstr "Antall"
-#: libraries/Console.class.php:332 libraries/Util.class.php:1260
-#: libraries/config/messages.inc.php:777
+#: libraries/Console.class.php:332 libraries/Util.class.php:1263
+#: libraries/config/messages.inc.php:779
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3361,7 +3362,7 @@ msgstr "Slett:"
msgid "SQL query on database %s:"
msgstr "SQL-spørring i database %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Kjør spørring"
@@ -3385,7 +3386,7 @@ msgstr "Oppdater bokmerke"
msgid "Delete bookmark"
msgstr "Slett bokmerke"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3393,19 +3394,19 @@ msgstr ""
"Tjeneren svarer ikke (eller den lokale MySQL tjenerens sokkel er ikke "
"korrekt konfigurert)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Tjeneren svarer ikke."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Vennligst sjekk privilegiene på mappen som inneholder databasen."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Detaljer…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Tilkoblingen for kontrollbrukeren som definert i din konfigurasjon feilet."
@@ -3446,9 +3447,9 @@ msgstr[0] "%1$s treff i %2$s"
msgstr[1] "%1$s treff i %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3502,28 +3503,28 @@ msgstr "Filter rader"
msgid "Search this table"
msgstr "Søk i denne tabellen"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Start"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Forrige"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Neste"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Siste"
@@ -3532,8 +3533,9 @@ msgstr "Siste"
msgid "All"
msgstr "Alle"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Antall rader:"
@@ -3629,16 +3631,16 @@ msgid "Query took %01.4f seconds."
msgstr "Spørring tok %01.4f sekunder."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Med avkrysset:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3646,7 +3648,7 @@ msgstr "Med avkrysset:"
msgid "Check All"
msgstr "Merk alle"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Utskriftsvennlig forhåndsvisning"
@@ -3745,11 +3747,11 @@ msgstr "Git - informasjonen mangler!"
msgid "Open new phpMyAdmin window"
msgstr "Åpne nytt phpMyAdmin vindu"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Klikk på linjen for å bla til toppen av siden"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "JavaScript må være slått på forbi dette punktet!"
@@ -3813,8 +3815,8 @@ msgstr "Primærnøkkelen har blitt slettet."
msgid "Index %s has been dropped."
msgstr "Indeksen %s har blitt slettet."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3832,7 +3834,7 @@ msgstr ""
"fjernes."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Tjener"
@@ -3844,16 +3846,16 @@ msgid "View"
msgstr "Vis"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3865,10 +3867,10 @@ msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3876,19 +3878,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Søk"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3897,7 +3899,7 @@ msgid "Insert"
msgstr "Sett inn"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3906,21 +3908,21 @@ msgid "Privileges"
msgstr "Privilegier"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operasjoner"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Overvåkning"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3937,16 +3939,16 @@ msgstr "Triggere"
msgid "Database seems to be empty!"
msgstr "Databasen ser ut til å være tom!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Spørring ved eksempel (Query by Example)"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rutiner"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3954,16 +3956,16 @@ msgstr "Rutiner"
msgid "Events"
msgstr "Hendelser"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Designer"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Senter kolonner"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3971,38 +3973,38 @@ msgstr "Senter kolonner"
msgid "Databases"
msgstr "Databaser"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Brukere"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Binærlogg"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replikering"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variabler"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Tegnsett"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Programtillegg"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Motorer"
@@ -4027,7 +4029,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d rader innsatt."
msgstr[1] "%1$d rader innsatt."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4699,12 +4701,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "En opplisting, valgt fra listen over definerte verdier"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Maksimum størrelse: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4715,120 +4717,114 @@ msgstr "Maksimum størrelse: %s%s"
msgid "MySQL said: "
msgstr "MySQL sa: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Forklar SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Ikke forklar SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "uten PHP kode"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Lag PHP kode"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Rediger innenfor"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Søn"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B, %Y %H:%M %p"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dager, %s timer, %s minutter og %s sekunder"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Mangler parametere:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Hopp til databasen \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Klikk for å endre"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Bla gjennom datamaskinen:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Merk fra opplastingskatalogen på vevtjeneren %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Katalogen du anga for opplasting kan ikke nåes."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Det er ingen filer å laste opp!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Tøm"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Utfør"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Skriv ut"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Opprettet"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Sist oppdatert"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Sist kontrollert"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start row"
-msgid "Start row:"
-msgstr "Startrad"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Søk:"
@@ -4851,13 +4847,13 @@ msgstr "Bruk denne verdien"
msgid "Rows"
msgstr "Rader"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5280,7 +5276,7 @@ msgid "Set value: %s"
msgstr "Sett verdi: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Gjennopprett standard verdi"
@@ -6161,10 +6157,10 @@ msgstr "Endre visningsmodus"
msgid "Customize default options."
msgstr "Tilpass standardinstillinger"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV-data"
@@ -6725,7 +6721,7 @@ 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:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Brukere kan ikke angi en høyere verdi"
@@ -6978,38 +6974,46 @@ msgstr "Disse er Rediger-, kopi- og slettelenker"
msgid "Where to show the table row links"
msgstr "Hvor tabell-lenkene skal vises"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
#, 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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Normal rekkefølge"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:531
#, 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:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Tabellbasert navigasjonsområde"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
#, 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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip utbuffring"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid ""
#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
@@ -7021,21 +7025,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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Standard sorteringsrekkefølge"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, 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:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Vedvarende forbindelser"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7049,11 +7053,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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Mangler phpMyAdmin konfigurasjonslagertabeller"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7065,11 +7069,11 @@ msgstr ""
"Slå av forvalgt advarsel som blir vist hvis mcrypt mangler ved "
"informasjonskapsel autentisering"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7082,27 +7086,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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Hvordan menyfanene vises"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Ikke tillat redigering av BLOB- eller BINARY-kolonner."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Beskytt binære kolonner"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7112,53 +7116,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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Permanent spørringshistorie"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
#, 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:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Spørringshistorielengde"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
#, 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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Rekodingsmotor"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, 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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Husk tabellens sortering"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Standard sorteringsrekkefølge"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
#, fuzzy
#| msgid ""
#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@@ -7166,91 +7170,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:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Gjenta topptekst"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Relasjonsvisningskolonne"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "Tjenervisningsinnstillinger"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Rutenett - redigering: Lagre alle redigerte celler på en gang"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
#, 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:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Lagringsmappe"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
#, 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:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Rekkefølge for vertsautorisering"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "La stå tom for standard"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Regler for vertsautorisering"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Tillat innlogging uten passord"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Tillat innlogging som root"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Økts verdi"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
#, 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:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid ""
#| "The path for the config file for [a@http://swekey.com]SweKey hardware "
@@ -7265,21 +7269,21 @@ msgstr ""
"authentication[/a] (ikke lokalisert i din dokumentrot; foreslått: /etc/"
"swekey.conf)"
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey config fil"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "Autentiseringsmetode som skal brukes"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Autentiseringstype"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7287,11 +7291,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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Bokmerketabell"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
@@ -7303,35 +7307,35 @@ msgstr ""
"La stå tom for ingen kolonnekommentarer/mime typer, anbefalt: "
"[kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Kolonneinformasjonstabell"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Komprimer tilkoblingen til MySQL tjeneren"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Komprimer tilkobling"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
#, 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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Tilkoblingstype"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Kontrollbrukerpassord"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7345,11 +7349,11 @@ msgstr ""
"informasjon tilgjengelig på [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Kontrollbruker"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7361,11 +7365,11 @@ msgstr ""
"En alternativ vert til å holde konfigurasjonslageret; la være tom for å "
"bruke den allerede definerte verten"
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Kontrollvert"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7378,19 +7382,19 @@ msgstr ""
"En alternativ vert til å holde konfigurasjonslageret; la være tom for å "
"bruke den allerede definerte verten"
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Control host"
msgid "Control port"
msgstr "Kontrollvert"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
#, 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:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7398,15 +7402,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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Slå av bruk av INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Skul databaser"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7417,25 +7421,25 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL spørringshistorietabell"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
#, 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:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Tjenervertsnavn"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "Logg ut URL"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
#, fuzzy
#| msgid ""
#| "Limits number of table preferences which are stored in database, the "
@@ -7447,17 +7451,17 @@ msgstr ""
"Begrenser antall tabellpreferanser som blir lagret i databasen, de eldste "
"postene blir automatisk slettet"
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Maksimalt antall tabellpreferanser som lagres"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "Se slavestatustabell"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7467,13 +7471,13 @@ msgid ""
msgstr ""
"La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Central columns table"
msgstr "CHAR textarea kolonner"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -7484,17 +7488,17 @@ msgid ""
msgstr ""
"La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, 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:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Koble til uten passord"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
#, fuzzy
#| msgid ""
#| "You can use MySQL wildcard characters (% and _), escape them if you want "
@@ -7513,21 +7517,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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Vis kun opplistede databaser"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
#, 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:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Passord for config autentisering"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7536,11 +7540,11 @@ msgid ""
msgstr ""
"La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF schema: sidetabell"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
@@ -7555,22 +7559,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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Databasenavn"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
#, 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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Tjenerport"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
#, fuzzy
#| msgid ""
#| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]"
@@ -7580,11 +7584,11 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Nylig brukt tabell"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]"
@@ -7594,13 +7598,13 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "Favorittabeller"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -7612,11 +7616,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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Relasjonstabell"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -7628,35 +7632,35 @@ msgstr ""
"Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/"
"a] for et eksempel"
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Signon sesjonsnavn"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "Innloggingslink"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
#, 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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Tjenersokkel"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Bruk SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -7667,13 +7671,13 @@ msgid ""
msgstr ""
"La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "PDF schema: tabellkoordinater"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
#, fuzzy
#| msgid ""
#| "Table to describe the display columns, leave blank for no support; "
@@ -7685,11 +7689,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:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Visningskolonnetabell"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
#, fuzzy
#| msgid ""
#| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]"
@@ -7699,11 +7703,11 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Tabell for UI preferanser"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7711,11 +7715,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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Legg til DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7723,11 +7727,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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Legg til DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7735,20 +7739,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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Legg til DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
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:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Spørringer som skal spores"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
@@ -7759,11 +7763,11 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL spørringssporingstabell"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7771,11 +7775,11 @@ msgstr ""
"Om sporingsmekanismen oppretter versjoner for tabeller og visninger "
"automatisk."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Automatisk opprette versjoner"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
#, fuzzy
#| msgid ""
#| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]"
@@ -7785,37 +7789,37 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Tabell for lagring av brukerpreferanser"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Bruk tabeller"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Vis vert tabell"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
#, fuzzy
#| msgid ""
#| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]"
@@ -7825,15 +7829,15 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Bruker for config autentisering"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7841,21 +7845,21 @@ msgstr ""
"En brukervennlig beskrivelse av denne tjeneren. La stå tom for visning av "
"vertsnavn istedet."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Fult navn for denne tjeneren"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
#, 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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Tillat visning av alle rader"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
#, fuzzy
#| msgid ""
#| "Please note that enabling this has no effect with [kbd]config[/kbd] "
@@ -7871,85 +7875,85 @@ msgstr ""
"autentiseringsmodus siden passordet er hardkodet i konfigurasjonsfila; dette "
"begrenser ikke muligheten til å utføre samme kommando direkte"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Vis passordendringsskjema"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Vis opprett database skjema"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Tabellkommentarer"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show versions"
msgid "Show Creation timestamp"
msgstr "Vis versjoner"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Vis masterstatus"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Vis felttyper"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
#, 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:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Vis funksjonsfelter"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
#, 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:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Vis hint"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -7961,15 +7965,15 @@ msgstr ""
"Vis link til [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"resultat"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Vis phpinfo() link"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Vis detaljert MySQL tjenerinformasjon"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -7977,32 +7981,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:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Vis SQL spørringer"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 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:771
+#: libraries/config/messages.inc.php:773
#, 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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Vis statistikk"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
#, fuzzy
#| msgid ""
#| "Mark used tables and make it possible to show databases with locked tables"
@@ -8011,11 +8015,11 @@ msgid ""
msgstr ""
"Merk tabeller i bruk og gjør det mulig å vise databaser med låste tabeller"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Ignorer låste tabeller"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected"
msgid ""
@@ -8023,11 +8027,11 @@ msgid ""
"detected."
msgstr "En advarsel vises på hovedsiden dersom Suhosin er oppdaget"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -8041,65 +8045,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:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Innloggings cookie gyldighet"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Textarea columns"
msgstr "CHAR textarea kolonner"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
#, fuzzy
#| msgid "CHAR textarea rows"
msgid "Textarea rows"
msgstr "CHAR textarea rader"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
#, 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:791
+#: libraries/config/messages.inc.php:793
#, 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:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Forvalgt tittel"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
#, 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:795
+#: libraries/config/messages.inc.php:797
#, 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:797
+#: libraries/config/messages.inc.php:799
#, fuzzy
#| msgid ""
#| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following "
@@ -8117,56 +8121,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:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Liste over godkjente mellomlager for IP allow/deny"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
#, 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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Opplastingsmappe"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
#, 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:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Bruk databasesøk"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Sjekk for siste versjon"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8174,34 +8178,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "Brukernavn"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Passord"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8213,53 +8217,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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "Tjenerport"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8289,46 +8293,46 @@ msgstr "HTTP autentisering"
msgid "Signon authentication"
msgstr "Rekkefølge for vertsautentisering"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV med LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Open Document regneark"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Rask"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Egendefinert"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Databaseeksportinnstillinger"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV for MS Excel data"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -14446,13 +14450,33 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Viser som PHP kode"
-#: libraries/sql.lib.php:1765
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
+#| 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
+"Denne tabellen inneholder ikke en unik kolonne. Funksjoner knyttet til "
+"valgene Endring, avkrysningsruten, redigere, kopiere og slette koblinger "
+"virker kanskje ikke etter lagring."
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Denne tabellen inneholder ikke en unik kolonne. Funksjoner knyttet til "
+"valgene Endring, avkrysningsruten, redigere, kopiere og slette koblinger "
+"virker kanskje ikke etter lagring."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemer med indeksene i tabellen `%s`"
@@ -15880,6 +15904,12 @@ msgstr "Kommentar"
msgid "Drag to reorder"
msgstr "Dra for å omplassere"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start row"
+msgid "Start row:"
+msgstr "Startrad"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Velg kolonner (minst ett):"
diff --git a/po/ne.po b/po/ne.po
index a37ac0ada4..6e4c7e0ab9 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-08-26 15:28+0200\n"
"Last-Translator: Nabin Ghimire \n"
"Language-Team: Nepali %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr ""
@@ -3259,25 +3260,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3317,9 +3318,9 @@ msgstr[0] ""
msgstr[1] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3373,28 +3374,28 @@ msgstr ""
msgid "Search this table"
msgstr ""
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr ""
@@ -3403,8 +3404,9 @@ msgstr ""
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3500,16 +3502,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr ""
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3517,7 +3519,7 @@ msgstr ""
msgid "Check All"
msgstr ""
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr ""
@@ -3610,11 +3612,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3678,8 +3680,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3695,7 +3697,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -3707,16 +3709,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3728,10 +3730,10 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3739,19 +3741,19 @@ msgid "SQL"
msgstr ""
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr ""
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3760,7 +3762,7 @@ msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3769,21 +3771,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr ""
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3800,16 +3802,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3817,16 +3819,16 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr ""
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3834,38 +3836,38 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr ""
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr ""
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -3890,7 +3892,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4493,12 +4495,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4509,118 +4511,114 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr ""
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr ""
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr ""
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr ""
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr ""
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr ""
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr ""
@@ -4643,13 +4641,13 @@ msgstr ""
msgid "Rows"
msgstr "पङ्क्तिहरू"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5058,7 +5056,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -5726,10 +5724,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6173,7 +6171,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6368,833 +6366,841 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "%s table"
#| msgid_plural "%s tables"
msgid "Favorites table"
msgstr "%s टेबल"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments:"
msgid "Show table comments"
msgstr "टेबलको टिप्पणीहरु:"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
+msgid ""
+"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772
-msgid "Show statistics"
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+msgid "Retain query box"
msgstr ""
#: libraries/config/messages.inc.php:773
+msgid "Allow to display database and table statistics (eg. space usage)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:774
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7202,52 +7208,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7255,80 +7261,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7352,44 +7358,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr ""
@@ -12656,13 +12662,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -13875,6 +13889,10 @@ msgstr ""
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr ""
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/nl.po b/po/nl.po
index 9a18d464a4..7676538b48 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-06-20 15:02+0200\n"
"Last-Translator: dingo thirteen \n"
-"Language-Team: Dutch "
-"\n"
+"Language-Team: Dutch \n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -300,7 +300,7 @@ msgid "Tracked tables"
msgstr "Tabellen met tracker"
#: db_tracking.php:125 db_tracking.php:287 libraries/Menu.class.php:247
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:798
#: 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
@@ -326,7 +326,7 @@ msgid "Updated"
msgstr "Bijgewerkt"
#: db_tracking.php:129 js/messages.php:237 libraries/Menu.class.php:551
-#: libraries/Util.class.php:4386 libraries/config.values.php:104
+#: libraries/Util.class.php:4391 libraries/config.values.php:104
#: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101
#: libraries/server_status_processes.lib.php:94 libraries/tracking.lib.php:278
msgid "Status"
@@ -515,8 +515,8 @@ msgstr "Geometrie toevoegen"
#: gis_data_editor.php:407 js/messages.php:286
#: libraries/DbSearch.class.php:467 libraries/DisplayResults.class.php:1807
-#: libraries/Util.class.php:4885 libraries/browse_foreigners.lib.php:142
-#: libraries/core.lib.php:610 libraries/display_change_password.lib.php:109
+#: 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_import.lib.php:392 libraries/index.lib.php:44
@@ -545,8 +545,9 @@ msgstr "Geometrie toevoegen"
#: libraries/tracking.lib.php:532 libraries/tracking.lib.php:652
#: prefs_manage.php:277 prefs_manage.php:355
#: templates/columns_definitions/column_definitions_form.phtml:59
-#: templates/index_form.phtml:238 templates/table/selection_form.phtml:75
-#: view_create.php:276 view_operations.php:106
+#: templates/index_form.phtml:238 templates/startAndNumberOfRowsPanel.phtml:14
+#: templates/table/selection_form.phtml:75 view_create.php:276
+#: view_operations.php:106
msgid "Go"
msgstr "Starten"
@@ -672,7 +673,7 @@ msgstr ""
msgid "Could not load the progress of the import."
msgstr "Voortgang van de import kon niet worden geladen."
-#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:735
+#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:738
#: libraries/export.lib.php:464
#: libraries/plugins/schema/Export_Relation_Schema.class.php:302
#: user_password.php:208
@@ -768,7 +769,7 @@ msgstr "Informatie over PHP weergeven"
msgid "Version information:"
msgstr "Versie-informatie:"
-#: index.php:392 libraries/Util.class.php:429 libraries/Util.class.php:490
+#: 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/navigation/NavigationHeader.class.php:197
@@ -901,7 +902,7 @@ msgid ""
msgstr ""
"De server gebruikt Suhosin. Zie de %sdocumentatie%s voor mogelijke problemen."
-#: js/messages.php:38 libraries/import.lib.php:125 sql.php:151
+#: js/messages.php:38 libraries/import.lib.php:125 sql.php:161
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld."
@@ -1044,7 +1045,6 @@ msgstr ""
"tabelstructuur pagina te gebruiken."
#: js/messages.php:85
-#| msgid "Are you sure you wish to change the collation and convert the data?"
msgid ""
"Are you sure you wish to change all the column collations and convert the "
"data?"
@@ -1129,7 +1129,7 @@ msgstr "Query simuleren"
msgid "Matched rows:"
msgstr "Overeenkomende rijen:"
-#: js/messages.php:114 libraries/Util.class.php:638
+#: js/messages.php:114 libraries/Util.class.php:641
msgid "SQL query:"
msgstr "SQL-query:"
@@ -1172,12 +1172,12 @@ msgid "Other"
msgstr "Andere"
#. l10n: Thousands separator
-#: js/messages.php:131 libraries/Util.class.php:1460
+#: js/messages.php:131 libraries/Util.class.php:1463
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:133 libraries/Util.class.php:1462
+#: js/messages.php:133 libraries/Util.class.php:1465
msgid "."
msgstr ","
@@ -1284,40 +1284,40 @@ msgid "Processes"
msgstr "Processen"
#. l10n: shortcuts for Byte
-#: js/messages.php:167 libraries/Util.class.php:1404
+#: js/messages.php:167 libraries/Util.class.php:1407
msgid "B"
msgstr "B"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:168 libraries/Util.class.php:1406
+#: js/messages.php:168 libraries/Util.class.php:1409
#: libraries/server_status_monitor.lib.php:217
msgid "KiB"
msgstr "KiB"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:169 libraries/Util.class.php:1408
+#: js/messages.php:169 libraries/Util.class.php:1411
#: libraries/display_export.lib.php:702
#: libraries/server_status_monitor.lib.php:218
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:170 libraries/Util.class.php:1410
+#: js/messages.php:170 libraries/Util.class.php:1413
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:171 libraries/Util.class.php:1412
+#: js/messages.php:171 libraries/Util.class.php:1415
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:172 libraries/Util.class.php:1414
+#: js/messages.php:172 libraries/Util.class.php:1417
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:173 libraries/Util.class.php:1416
+#: js/messages.php:173 libraries/Util.class.php:1419
msgid "EiB"
msgstr "EiB"
@@ -1336,7 +1336,7 @@ msgid "Traffic"
msgstr "Verkeer"
#: js/messages.php:179 libraries/Menu.class.php:585
-#: libraries/Util.class.php:4390 libraries/server_status_monitor.lib.php:257
+#: libraries/Util.class.php:4395 libraries/server_status_monitor.lib.php:257
msgid "Settings"
msgstr "Instellingen"
@@ -1648,8 +1648,8 @@ msgstr ""
#: js/messages.php:264 libraries/Menu.class.php:350
#: libraries/Menu.class.php:453 libraries/Menu.class.php:581
-#: libraries/Util.class.php:4389 libraries/Util.class.php:4404
-#: libraries/Util.class.php:4421 libraries/config/messages.inc.php:236
+#: libraries/Util.class.php:4394 libraries/Util.class.php:4409
+#: libraries/Util.class.php:4426 libraries/config/messages.inc.php:236
#: libraries/display_import.lib.php:105
#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:238
#: setup/frames/menu.inc.php:26
@@ -1719,7 +1719,7 @@ msgstr "Aanmaken SQL..."
msgid "Cancel"
msgstr "Annuleren"
-#: js/messages.php:290 libraries/Header.class.php:456
+#: js/messages.php:290 libraries/Header.class.php:455
msgid "Page-related settings"
msgstr "Pagina gerelateerde instellingen"
@@ -1796,7 +1796,7 @@ msgstr "Database kopiëren"
msgid "Changing Charset"
msgstr "Karakterset aanpassen"
-#: js/messages.php:314 libraries/Util.class.php:3234
+#: js/messages.php:314 libraries/Util.class.php:3237
msgid "Enable foreign key checks"
msgstr "Controle op externe sleutelvelden inschakelen"
@@ -1832,9 +1832,9 @@ msgstr ""
#: js/messages.php:328 libraries/DisplayResults.class.php:4857
#: libraries/DisplayResults.class.php:5115 libraries/Menu.class.php:342
#: libraries/Menu.class.php:444 libraries/Menu.class.php:577
-#: libraries/Util.class.php:3675 libraries/Util.class.php:3676
-#: libraries/Util.class.php:4388 libraries/Util.class.php:4403
-#: libraries/Util.class.php:4420 libraries/config/messages.inc.php:230
+#: libraries/Util.class.php:3680 libraries/Util.class.php:3681
+#: libraries/Util.class.php:4393 libraries/Util.class.php:4408
+#: libraries/Util.class.php:4425 libraries/config/messages.inc.php:230
#: libraries/display_export.lib.php:167 libraries/rte/rte_list.lib.php:146
#: libraries/server_privileges.lib.php:2085
#: libraries/server_privileges.lib.php:2164
@@ -1885,11 +1885,11 @@ msgstr "SQL-queryveld tonen"
#: js/messages.php:343 libraries/Console.class.php:88
#: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3450
#: libraries/DisplayResults.class.php:4839 libraries/Index.class.php:723
-#: libraries/Util.class.php:664 libraries/Util.class.php:1218
-#: libraries/Util.class.php:3673 libraries/Util.class.php:3674
+#: libraries/Util.class.php:667 libraries/Util.class.php:1221
+#: 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:775
+#: libraries/config/messages.inc.php:777
#: libraries/server_user_groups.lib.php:119
#: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179
msgid "Edit"
@@ -2592,7 +2592,6 @@ msgstr "Er is een fout opgetreden bij het ophalen van SQL debug informatie."
#: js/messages.php:592
#, php-format
-#| msgid "Enter executes queries in console"
msgid "%s queries executed %s times in %s seconds."
msgstr "%s queries %s keer uitgevoerd in %s seconden."
@@ -2602,12 +2601,10 @@ msgid "%s argument(s) passed"
msgstr "%s argument(en) gepasseerd"
#: js/messages.php:594
-#| msgid "Show table comments"
msgid "Show arguments"
msgstr "Toon argumenten"
#: js/messages.php:595
-#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Argumenten verbergen"
@@ -2690,63 +2687,63 @@ msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1620
+#: js/messages.php:655 libraries/Util.class.php:1623
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1622
+#: js/messages.php:657 libraries/Util.class.php:1625
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1624
+#: js/messages.php:659 libraries/Util.class.php:1627
msgid "Mar"
msgstr "mrt"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1626
+#: js/messages.php:661 libraries/Util.class.php:1629
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1628
+#: js/messages.php:663 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:1630
+#: js/messages.php:665 libraries/Util.class.php:1633
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1632
+#: js/messages.php:667 libraries/Util.class.php:1635
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1634
+#: js/messages.php:669 libraries/Util.class.php:1637
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1636
+#: js/messages.php:671 libraries/Util.class.php:1639
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1638
+#: js/messages.php:673 libraries/Util.class.php:1641
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1640
+#: js/messages.php:675 libraries/Util.class.php:1643
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1642
+#: js/messages.php:677 libraries/Util.class.php:1645
msgid "Dec"
msgstr "dec"
@@ -2784,32 +2781,32 @@ msgid "Sun"
msgstr "zo"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1647
+#: js/messages.php:698 libraries/Util.class.php:1650
msgid "Mon"
msgstr "ma"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1649
+#: js/messages.php:700 libraries/Util.class.php:1652
msgid "Tue"
msgstr "di"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1651
+#: js/messages.php:702 libraries/Util.class.php:1654
msgid "Wed"
msgstr "wo"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1653
+#: js/messages.php:704 libraries/Util.class.php:1656
msgid "Thu"
msgstr "do"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1655
+#: js/messages.php:706 libraries/Util.class.php:1658
msgid "Fri"
msgstr "vr"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1657
+#: js/messages.php:708 libraries/Util.class.php:1660
msgid "Sat"
msgstr "za"
@@ -2951,7 +2948,7 @@ msgid "Please enter a valid HEX input"
msgstr "Vul a.u.b.een geldige waarde in HEX in"
#: js/messages.php:785 libraries/Message.class.php:199
-#: libraries/Util.class.php:624 libraries/core.lib.php:245
+#: 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
msgid "Error"
@@ -3053,7 +3050,7 @@ msgid "Requery"
msgstr "Query opnieuw uitvoeren"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:790
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3102,7 +3099,7 @@ msgstr "Tijdens de huidige sessie"
msgid "Explain"
msgstr "Verklaar"
-#: libraries/Console.class.php:216 libraries/Util.class.php:1291
+#: libraries/Console.class.php:216 libraries/Util.class.php:1294
#: libraries/sql.lib.php:278
msgid "Profiling"
msgstr "Profiling"
@@ -3183,17 +3180,14 @@ msgid "Press Enter to execute query"
msgstr "Druk op Enter om de query uit te voeren"
#: libraries/Console.class.php:277
-#| msgid "Ascending"
msgid "ascending"
msgstr "oplopend"
#: libraries/Console.class.php:280
-#| msgid "Descending"
msgid "descending"
msgstr "aflopend"
#: libraries/Console.class.php:283
-#| msgid "Order"
msgid "Order:"
msgstr "Volgorde:"
@@ -3202,7 +3196,6 @@ msgid "Count"
msgstr "Aantal"
#: libraries/Console.class.php:292
-#| msgid "Execute every"
msgid "Execution order"
msgstr "Uitvoerings volgorde"
@@ -3211,37 +3204,31 @@ msgid "Time taken"
msgstr "Gebruikte tijd"
#: libraries/Console.class.php:298
-#| msgid "Order"
msgid "Order by:"
msgstr "Volgorde:"
#: libraries/Console.class.php:301
-#| msgid "SQL queries"
msgid "Group queries"
msgstr "Groep query's"
#: libraries/Console.class.php:304
-#| msgid "SQL queries"
msgid "Ungroup queries"
msgstr "Niet gegroepeerde query's"
#: libraries/Console.class.php:315
-#| msgid "Show create"
msgid "Show trace"
msgstr "Toon bewerkingen"
#: libraries/Console.class.php:316
-#| msgid "Hide Panel"
msgid "Hide trace"
msgstr "Verberg bewerkingen"
#: libraries/Console.class.php:317
-#| msgid "Count"
msgid "Count:"
msgstr "Aantal:"
-#: libraries/Console.class.php:332 libraries/Util.class.php:1260
-#: libraries/config/messages.inc.php:777
+#: libraries/Console.class.php:332 libraries/Util.class.php:1263
+#: libraries/config/messages.inc.php:779
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3330,7 +3317,6 @@ msgid "Sort:"
msgstr "Sorteren:"
#: libraries/DBQbe.class.php:630
-#| msgid "Sort:"
msgid "Sort order:"
msgstr "Sorteervolgorde:"
@@ -3391,7 +3377,7 @@ msgstr "Verwijderen:"
msgid "SQL query on database %s:"
msgstr "SQL-query op database %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Query uitvoeren"
@@ -3415,26 +3401,26 @@ msgstr "Bladwijzer bijwerken"
msgid "Delete bookmark"
msgstr "Bladwijzer verwijderen"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"De server reageert niet (of de socket van de server is niet juist ingesteld)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "De server reageert niet."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Controleer de rechten op de map met de database."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Details…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Verbinding voor de controlegebruiker zoals in de configuratie is opgegeven "
@@ -3476,9 +3462,9 @@ msgstr[0] "%1$s overeenkomst in %2$s"
msgstr[1] "%1$s overeenkomsten in %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3532,28 +3518,28 @@ msgstr "Filter rijen"
msgid "Search this table"
msgstr "Zoek in deze tabel"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Begin"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Vorige"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Volgende"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Einde"
@@ -3562,8 +3548,9 @@ msgstr "Einde"
msgid "All"
msgstr "Alle"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Aantal rijen:"
@@ -3660,16 +3647,16 @@ msgid "Query took %01.4f seconds."
msgstr "Query duurde %01.4f seconden."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Met geselecteerd:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3677,7 +3664,7 @@ msgstr "Met geselecteerd:"
msgid "Check All"
msgstr "Selecteer alles"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Afdrukken"
@@ -3776,11 +3763,11 @@ msgstr "Git-informatie ontbreekt!"
msgid "Open new phpMyAdmin window"
msgstr "Nieuw phpMyAdmin-scherm openen"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Klik op de balk om te scrollen naar het begin van de pagina"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Javascript moet ingeschakeld zijn voorbij dit punt!"
@@ -3844,8 +3831,8 @@ msgstr "De primaire sleutel werd verwijderd."
msgid "Index %s has been dropped."
msgstr "Index %s is verwijderd."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3863,7 +3850,7 @@ msgstr ""
"verwijderd."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -3875,16 +3862,16 @@ msgid "View"
msgstr "View"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3896,10 +3883,10 @@ msgid "Structure"
msgstr "Structuur"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3907,19 +3894,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Zoeken"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3928,7 +3915,7 @@ msgid "Insert"
msgstr "Invoegen"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3937,21 +3924,21 @@ msgid "Privileges"
msgstr "Rechten"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Handelingen"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Traceren"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3968,16 +3955,16 @@ msgstr "Triggers"
msgid "Database seems to be empty!"
msgstr "Database lijkt leeg te zijn!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Query opbouwen"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Routines"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3985,16 +3972,16 @@ msgstr "Routines"
msgid "Events"
msgstr "Gebeurtenissen"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Ontwerper"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Centrale kolommen"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4002,38 +3989,38 @@ msgstr "Centrale kolommen"
msgid "Databases"
msgstr "Databases"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Gebruikers"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Binaire log"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replicatie"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variabelen"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Karaktersets"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Plug-ins"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Engines"
@@ -4058,7 +4045,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d rij toegevoegd."
msgstr[1] "%1$d rijen toegevoegd."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4739,12 +4726,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Een opsomming, gekozen uit de lijst van gedefinieerde waarden"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Maximale grootte: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4755,118 +4742,114 @@ msgstr "Maximale grootte: %s%s"
msgid "MySQL said: "
msgstr "MySQL meldt: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Verklaar SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Uitleg SQL overslaan"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr "Analyseer uitleg op %s"
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "zonder PHP-code"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Genereer PHP-code"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Inline bewerken"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "zo"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y om %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dagen, %s uren, %s minuten en %s seconden"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Ontbrekende parameter:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Ga naar database \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Klik om te wisselen"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Blader op uw eigen pc:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Selecteer uit de webserver uploadmap %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "De map die u heeft ingesteld om te uploaden kan niet worden bereikt."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Er zijn geen bestanden om te uploaden!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Legen"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Uitvoeren"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Afdrukken"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Gecreëerd"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Laatst bijgewerkt"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Laatst gecontroleerd"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Startregel:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Zoeken:"
@@ -4889,13 +4872,13 @@ msgstr "Gebruik deze waarde"
msgid "Rows"
msgstr "Rijen"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5147,7 +5130,6 @@ msgid "display column"
msgstr "toon kolom"
#: libraries/config.values.php:102
-#| msgid "Welcome to %s"
msgid "Welcome"
msgstr "Welkom"
@@ -5316,7 +5298,7 @@ msgid "Set value: %s"
msgstr "Waarde instellen op: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Standaard waarde herstellen"
@@ -6075,10 +6057,10 @@ msgstr "Aanpassen verkennen-mode."
msgid "Customize default options."
msgstr "Aanpassen standaard opties."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV-gegevens"
@@ -6558,7 +6540,7 @@ msgid "Maximum displayed SQL length"
msgstr "Maximaal getoonde SQL-lengte"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Gebruiker kan geen hogere waarde instellen"
@@ -6775,33 +6757,41 @@ msgstr "Dit zijn de links Bewerken, Kopiëren en Verwijderen."
msgid "Where to show the table row links"
msgstr "Waar de tabelregellinks getoond worden"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
"Gebruik natuurlijke volgorde voor het sorteren van tabel- en databasenamen."
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Natuurlijke volgorde"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Gebruik enkel iconen, enkel tekst of beide."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Navigatiebalk voor tabellen"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "GZip-uitvoerbuffering gebruiken voor het versnellen van HTTP-verkeer."
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip-uitvoerbuffering"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6809,19 +6799,19 @@ msgstr ""
"[kbd]SMART[/kbd] - op aflopende volgorde voor kolommen van het type TIME, "
"DATE, DATETIME en TIMESTAMP, oplopend voor overige kolommen."
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Standaard sorteervolgorde"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Gebruik persistente verbindingen voor MySQL-databases."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Persistente verbindingen"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6831,11 +6821,11 @@ msgstr ""
"databasedetails Structuur wanneer een benodigde tabel voor de configuratie-"
"opslag van phpMyAdmin niet gevonden kan worden."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Tabellen voor de configuratie-opslag van phpMyAdmin ontbreken"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6843,11 +6833,11 @@ msgstr ""
"Schakel de standaard waarschuwing uit als een verschil in versie tussen de "
"MySQL bibliotheek en die van de server gedetecteerd wordt."
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Waarschuwing verschil server/bibliotheek"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6855,27 +6845,27 @@ msgstr ""
"De waarschuwing uitschakelen die getoond wordt op de Structuur pagina "
"wanneer kolomnamen in een tabel gereserveerde MySQL woorden zijn."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "MySQL gereserveerde woorden waarschuwing"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Hoe de menu-tabs te tonen"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Hoe de verschillende acties te tonen"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Blokkeer het bewerken van 'BLOB'- en 'BINARY'-kolommen."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Binaire kolommen beschermen"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6886,107 +6876,107 @@ msgstr ""
"uitgeschakeld, worden JS-routines gebruikt om querygeschiedenis te tonen "
"(deze gaat verloren bij het sluiten van het venster)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Permanente querygeschiedenis"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Hoeveel query's er worden bewaard in de geschiedenis."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Lengte querygeschiedenis"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
"Selecteer welke functies worden gebruikt om karaktersetconversies uit te "
"voeren."
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Hercoderingsengine"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Bij het bekijken van tabellen, wordt de sorteervolgorde onthouden."
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "De tabelsortering onthouden"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr "Standaard sorteervolgorde voor tabellen met een primaire sleutel."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Standaard sorteervolgorde voor primaire sleutels"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Herhaal de kopregel elke X cellen, [kbd]0[/kbd] schakelt deze functie uit."
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Kopregels herhalen"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Rasterbewerken: trigger actie"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Relationele weergave"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "Voor weergaveopties"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Roosterbewerkingen : Alle wijzigingen aan cellen tegelijk opslaan"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Map op de server waar exports kunnen worden opgeslagen."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Opslagmap"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Laat dit veld leeg indien u het niet wenst te gebruiken."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Volgorde hostautorisatie"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Laat dit veld leeg om de standaardwaarde te gebruiken."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Regels hostautorisatie"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Aanmelden zonder wachtwoord toestaan"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Aanmelden als root toestaan"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Sessie tijdzone"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -6994,15 +6984,15 @@ msgstr ""
"Stel de gebruikte tijdzone in; mogelijk is dat een andere dan die van je "
"database server"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "HTTP Basic Auth Realm naam om weer te geven tijdens HTTP Auth."
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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 +7002,19 @@ msgstr ""
"hardware-authenticatie[/a] (niet binnen de documentrootmap van uw webserver; "
"suggestie: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey-configuratiebestand"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Authenticatiemethode."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Authenticatietype"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7032,11 +7022,11 @@ msgstr ""
"Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]bladwijzers[/a] te gebruiken, suggestie: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Bladwijzertabel"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7044,31 +7034,31 @@ msgstr ""
"Laat dit veld leeg om geen kolomopmerkingen en mimetypes te ondersteunen, "
"suggestie: [kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Tabel voor kolominformatie"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Comprimeer verbinding naar de MySQL-server."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Comprimeer verbinding"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "Hoe te verbinden met de server, gebruik [kbd]tcp[/kbd] bij twijfel."
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Verbindingstype"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Controle gebruikerswachtwoord"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7076,11 +7066,11 @@ msgstr ""
"Een speciale MySQL-gebruiker met beperkte rechten, zie de [a@http://wiki."
"phpmyadmin.net/pma/controluser]wiki[/a] voor meer informatie."
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Controle gebruiker"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7088,11 +7078,11 @@ msgstr ""
"Een alternatieve host voor de configuratie-opslag; laat leeg om de reeds "
"gedefinieerde host te gebruiken."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Controlehost"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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,17 +7092,17 @@ msgstr ""
"laat leeg om de standaardpoort te gebruiken, of om de reeds gedefinieerde "
"poort te gebruiken als controlhost gelijk is aan host."
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Controlepoort"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
"Verberg databases die aan de hier opgegeven reguliere expressie (PCRE) "
"voldoen."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7121,15 +7111,15 @@ msgstr ""
"bugs/2606/]PMA-bugtracker[/a] en [a@http://bugs.mysql.com/19588]MySQL Bugs[/"
"a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Geen gebruik maken van INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Verberg databases"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7137,23 +7127,23 @@ msgstr ""
"Laat dit veld leeg om SQL-geschiedenis niet te ondersteunen, suggestie: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Tabel voor SQL-querygeschiedenis"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Hostnaam waar de MySQL-server bereikbaar is."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Serverhostnaam"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL voor afmelden"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7161,15 +7151,15 @@ msgstr ""
"Beperkt het aantal tabelvoorkeuren die opgeslagen zijn in de database, de "
"oudste worden automatisch verwijderd."
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Het maximum aantal tabelvoorkeuren die opgeslagen worden"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "Tabel met opgeslagen opzoekingen van 'Query door voorbeeld'"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7177,11 +7167,11 @@ msgstr ""
"Laat dit veld leeg om ondersteuning van 'Query door voorbeeld' opgeslagen "
"opzoekingen uit te schakelen, suggestie: [kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Centrale kolommen tabel"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7189,15 +7179,15 @@ msgstr ""
"Laat dit veld leeg om centrale kolommen tabel niet te ondersteunen, "
"suggestie: [kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Probeer te verbinden zonder wachtwoord."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Verbinden zonder wachtwoord"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7207,31 +7197,31 @@ msgstr ""
"een \\ indien u ze letterlijk wil gebruiken. Gebruik bijvoorbeeld [kbd]'mijn"
"\\_db'[/kbd] en niet [kbd]'mijn_db'[/kbd]."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Toon enkel de opgesomde databases"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
"Laat dit veld leeg indien u geen gebruik maakt van 'config'-authenticatie."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Wachtwoord voor 'config'-authenticatie"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Laat dit veld leeg om PDF-schemaondersteuning uit te schakelen, suggestie: "
"[kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF-schema: pagina's tabel"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7242,22 +7232,22 @@ msgstr ""
"informatie. Laat dit veld leeg om dit uit te schakelen, suggestie: "
"[kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Databasenaam"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Het TCP-poortnummer waarop MySQL luistert, laat dit veld leeg om de "
"standaardwaarde te gebruiken."
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Serverpoort"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7265,11 +7255,11 @@ msgstr ""
"Laat dit veld leeg om geen recent gebruikte tabellen op te slaan over "
"sessies heen, voorstel: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Recent gebruikte tabel"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7277,11 +7267,11 @@ msgstr ""
"Laat dit veld leeg om geen veel gebruikte tabellen op te slaan over sessies "
"heen, voorstel: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Favorieten tabel"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7290,11 +7280,11 @@ msgstr ""
"relation]relation-links[/a] te ondersteunen, suggestie: [kbd]pma__relation[/"
"kbd]."
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Relatietabel"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7302,33 +7292,33 @@ msgstr ""
"Zie [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authenticatietypes[/"
"a] voor een voorbeeld."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Signon-sessienaam"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "Signon-URL"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Het socket waarop de MySQL-server luistert, laat dit leeg om de standaard "
"waarde te gebruiken."
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Serversocket"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "SSL inschakelen voor de verbinding naar de MySQL-server."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "SSL gebruiken"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7336,11 +7326,11 @@ msgstr ""
"Laat dit veld leeg om geen PDF-schema te ondersteunen, suggestie: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Ontwerper en PDF-schema: tabelcoördinaten"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7348,11 +7338,11 @@ msgstr ""
"De tabel om kolomomschrijvingen te definiëren, laat dit veld leeg om dit "
"niet te gebruiken; suggestie: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Tabel met kolomomschrijvingen"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7360,11 +7350,11 @@ msgstr ""
"Laat dit veld leeg om interfacevoorkeuren niet \"persistent\" op te slaan, "
"suggestie: [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Tabel voor interfacevoorkeuren"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7372,11 +7362,11 @@ msgstr ""
"Of de opdracht DROP DATABASE IF EXISTS toegevoegd wordt als eerste regel van "
"de log als een database aangemaakt wordt."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE toevoegen"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7384,12 +7374,12 @@ msgstr ""
"Of een opdracht DROP TABLE IF EXISTS toegevoegd wordt als eerste regel van "
"de log als een tabel aangemaakt wordt."
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "DROP TABLE toevoegen"
# "statement" hier vertalen is geen goed idee.
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7397,21 +7387,21 @@ msgstr ""
"Of een opdracht DROP VIEW IF EXISTS als de eerste lijn toegevoegd zal worden "
"bij het aanmaken van een weergave of niet."
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "DROP VIEW toevoegen"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Definieert de lijst van opdrachten die gebruikt worden bij het automatisch "
"aanmaken bij nieuwe versies."
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Bij te houden opdrachten"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7419,11 +7409,11 @@ msgstr ""
"Laat dit veld leeg om het opvolgen van SQL-query's niet te ondersteunen, "
"suggestie: [kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL-query-opvolgingstabel"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7431,11 +7421,11 @@ msgstr ""
"Of het opvolgsysteem versies voor tabellen en weergaven automatisch aanmaakt "
"of niet."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Automatisch versies aanmaken"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7443,11 +7433,11 @@ msgstr ""
"Laat dit veld leeg om geen gebruikersvoorkeuren op te slaan in de database, "
"suggestie: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Opslagtabel voor gebruikersvoorkeuren"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7458,11 +7448,11 @@ msgstr ""
"beide leeg laat wordt deze functie uitgeschakeld, suggestie: "
"[kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Gebruikerstabel"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7472,11 +7462,11 @@ msgstr ""
"configureerbare menu's optie te activeren; als u een van beide leeg laat "
"wordt deze functie uitgeschakeld, suggestie: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Gebruikersgroepentabel"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7484,15 +7474,15 @@ msgstr ""
"Laat dit veld leeg om de optie, die navigatieonderdelen kan verbergen of "
"tonen, uit te schakelen, suggestie: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Tabel met verborgen navigatieonderdelen"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Gebruiker voor 'config'-authenticatie"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7500,20 +7490,20 @@ msgstr ""
"Een gebruiksvriendelijke naam voor deze server. Laat dit veld leeg om de "
"hostnaam te tonen."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Uitgebreide naam voor deze server"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
"Of er een knop \"Toon alle (rijen)\" moet worden getoond aan de gebruiker."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Toon alle rijen"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7524,54 +7514,54 @@ msgstr ""
"configuratiebestand staat opgeslagen; dit beperkt echter niet de "
"mogelijkheid om de bijbehorende SQL-opdracht handmatig uit te voeren."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Toon formulier voor wachtwoord wijzigen"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Toon formulier om een nieuwe database aan te maken"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr "Toon of verberg een kolom met het commentaar voor alle tabellen."
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr "Tabel opmerkingen"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Toon of verberg een kolom met het tijdstip van aanmaken voor alle tabellen."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Toon het tijdstip van aanmaken"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Toon of verberg een kolom met het tijdstip van laatste aanpassing voor alle "
"tabellen."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Toon het tijdstip van laatste aanpassing"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Toon of verberg een kolom met het tijdstip van laatste controle voor alle "
"tabellen."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Toon het tijdstip van laatste controle"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7579,27 +7569,27 @@ msgstr ""
"Definieert of type velden initieel getoond worden in de modus bewerken/"
"toevoegen."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Toon veldtypes"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Toon de functievelden tijdens het wijzigen/invoegen."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Toon functievelden"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Of een hint getoond wordt of niet."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Toon hint"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7607,56 +7597,56 @@ msgstr ""
"Toon link naar de uitvoer van [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Toon link naar phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Toon gedetailleerde MySQL-serverinformatie"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
"Geeft aan of SQL-query's die door phpMyAdmin werden gegenereerd moeten "
"worden getoond."
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Toon SQL-query's"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "Bepaalt of het queryveld op het scherm moet blijven na invoer."
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Queryveld behouden"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Maakt het mogelijk om statistieken van databases en tabellen te tonen (over "
"o.a. het schijfgebruik)."
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Toon statistieken"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Markeer tabellen die in gebruik zijn en maak het mogelijk om databases met "
"geblokkeerde tabellen te tonen."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Herken vergrendelde tabellen"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7664,11 +7654,11 @@ msgstr ""
"Schakel de standaard waarschuwing uit die wordt getoond op de hoofdpagina "
"als Suhosin gedetecteerd wordt."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin-waarschuwing"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 +7668,11 @@ msgstr ""
"waarde van de PHP instelling 'session.gc_maxlifetime' lager is dan de waarde "
"van 'LoginCookieValidity'."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "Waarschuwing geldigheid inlog-cookie"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7690,11 +7680,11 @@ msgstr ""
"Tekstveldgrootte (kolommen) in bewerkmodus, deze waarde wordt benadrukt "
"weergegeven voor SQL-querytekstvelden (*2)."
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Tekstveldkolommen"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7702,31 +7692,31 @@ msgstr ""
"Tekstveldgrootte (rijen) in bewerkmodus, deze waarde wordt benadrukt "
"weergegeven voor SQL-query tekstvelden (*2)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Tekstveldregels"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr "Titel van het browserscherm wanneer een database geselecteerd is."
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Titel van het browserscherm wanneer niets geselecteerd is."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Standaard titel"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "Titel van het browserscherm wanneer een server geselecteerd is."
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "Titel van het browserscherm wanneer een tabel geselecteerd is."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7738,27 +7728,27 @@ msgstr ""
"For) header moet vertrouwen wanneer deze afkomstig is van het IP 1.2.3.4:[br]"
"[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Lijst van vertrouwde proxyservers"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr "Map op de server waar te importeren bestanden kunnen worden ge-upload."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Uploadmap"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Toestaan om te zoeken binnen de volledige database."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Databasezoekfunctie gebruiken"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7766,28 +7756,28 @@ msgstr ""
"Wanneer uitgeschakeld, kunnen gebruikers geen van de opties onderaan "
"wijzigen, onafhankelijk van het aanvinkveld aan de rechterkant."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Schakel het ontwikkelaarstabblad in bij instellingen"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Controleren op de meest recente versie"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
"Schakel de controle op de nieuwste versie in op de hoofdpagina van "
"phpMyAdmin."
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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 "Versiecontrole"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:810
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 +7790,11 @@ msgstr ""
"geïnstalleerd is geen directe toegang tot het internet heeft. Het formaat "
"is: \"servernaam:poortnummer\"."
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Proxy url"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7815,19 +7805,19 @@ msgstr ""
"basisverificatie uitgevoerd. Andere types verificatie worden momenteel niet "
"ondersteund."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Proxy gebruikersnaam"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "Het wachtwoord voor de authenticatie met de proxy."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Proxy wachtwoord"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7835,35 +7825,35 @@ msgstr ""
"Gebruik [a@http://nl.wikipedia.org/wiki/ZIP_(bestandstype)]ZIP[/a]-"
"compressie voor import- en exportoperaties."
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Voer uw openbare sleutel in voor de reCaptcha service op uw domein."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Openbare sleutel voor reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Voer uw private sleutel in voor de reCaptcha service op uw domein."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Private sleutel voor reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "Kies de standaard actie bij het verzenden van foutmeldingsverslagen."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Verzend foutmeldingsverslagen"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7871,11 +7861,11 @@ msgstr ""
"Queries worden uitgevoerd door op Enter te drukken (in plaats van Ctrl"
"+Enter). Nieuwe regels worden ingevoegd met de toetscombinatie Shift+Enter."
-#: libraries/config/messages.inc.php:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr "De Enter toets voert queries uit in de console"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7883,7 +7873,7 @@ msgstr ""
"Schakel 'Zonder configuratie'-modus in om phpMyAdmin "
"configuratieopslagtabellen automatisch in te stellen."
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "'Zonder configuratie'-modus inschakelen"
@@ -7909,44 +7899,44 @@ msgstr "HTTP-authenticatie"
msgid "Signon authentication"
msgstr "Signon-authenticatie"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV met behulp van LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-rekenblad"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Snel"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Aangepast"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Databaseexportopties"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV voor MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "OpenDocument Tekst"
@@ -9776,7 +9766,6 @@ msgid "Storage Engine"
msgstr "Opslag-engine"
#: libraries/operations.lib.php:995
-#| msgid "Make all columns atomic"
msgid "Change all column collations"
msgstr "Wijzig alle kolommen vergelijkingen"
@@ -13748,16 +13737,33 @@ msgstr "Bladwijzer \"%s\" wordt gebruikt als standaard browsequery."
msgid "Showing as PHP code"
msgstr "Getoond als PHP-code"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"De huidige selectie bevat geen unieke kolom. Functies zoals "
"rasterbewerkingen, checkboxen, Bewerken, Kopiëren en Verwijderen, zijn niet "
"beschikbaar."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"De huidige selectie bevat geen unieke kolom. Functies zoals "
+"rasterbewerkingen, checkboxen, Bewerken, Kopiëren en Verwijderen, zijn niet "
+"beschikbaar."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemen met de indexen van de tabel `%s`"
@@ -15026,6 +15032,10 @@ msgstr "Opmerking:"
msgid "Drag to reorder"
msgstr "Sleep om te herschikken"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Startregel:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Selecteer kolommen (minstens één):"
diff --git a/po/pa.po b/po/pa.po
index f3db612d98..7e5aff9719 100644
--- a/po/pa.po
+++ b/po/pa.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-01-06 12:13+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Punjabi %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr ""
@@ -3242,25 +3243,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3300,9 +3301,9 @@ msgstr[0] ""
msgstr[1] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3356,28 +3357,28 @@ msgstr ""
msgid "Search this table"
msgstr ""
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr ""
@@ -3386,8 +3387,9 @@ msgstr ""
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3485,16 +3487,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr ""
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3502,7 +3504,7 @@ msgstr ""
msgid "Check All"
msgstr ""
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr ""
@@ -3595,11 +3597,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3663,8 +3665,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3680,7 +3682,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -3692,16 +3694,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3713,10 +3715,10 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3724,19 +3726,19 @@ msgid "SQL"
msgstr ""
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "ਲੱਭੋ"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3745,7 +3747,7 @@ msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3754,21 +3756,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr ""
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3785,16 +3787,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3802,16 +3804,16 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr ""
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3819,38 +3821,38 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr ""
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr ""
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -3875,7 +3877,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4484,12 +4486,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4500,118 +4502,114 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr ""
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "ਐਤ"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr ""
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr ""
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr ""
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr ""
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr ""
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -4636,13 +4634,13 @@ msgstr ""
msgid "Rows"
msgstr ""
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5047,7 +5045,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -5715,10 +5713,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6162,7 +6160,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6361,832 +6359,840 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Show all"
msgid "Favorites table"
msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Show all"
msgid "Show table comments"
msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
+msgid ""
+"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772
-msgid "Show statistics"
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+msgid "Retain query box"
msgstr ""
#: libraries/config/messages.inc.php:773
+msgid "Allow to display database and table statistics (eg. space usage)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:774
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7194,52 +7200,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7247,80 +7253,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7344,44 +7350,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr ""
@@ -12659,13 +12665,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -13878,6 +13892,10 @@ msgstr ""
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr ""
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index d5c9378cb3..af0e46695d 100644
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -8,7 +8,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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -298,7 +298,7 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:125 db_tracking.php:287 libraries/Menu.class.php:247
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:798
#: 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
@@ -324,7 +324,7 @@ msgid "Updated"
msgstr ""
#: db_tracking.php:129 js/messages.php:237 libraries/Menu.class.php:551
-#: libraries/Util.class.php:4386 libraries/config.values.php:104
+#: libraries/Util.class.php:4391 libraries/config.values.php:104
#: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101
#: libraries/server_status_processes.lib.php:94 libraries/tracking.lib.php:278
msgid "Status"
@@ -507,8 +507,8 @@ msgstr ""
#: gis_data_editor.php:407 js/messages.php:286
#: libraries/DbSearch.class.php:467 libraries/DisplayResults.class.php:1807
-#: libraries/Util.class.php:4885 libraries/browse_foreigners.lib.php:142
-#: libraries/core.lib.php:610 libraries/display_change_password.lib.php:109
+#: 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_import.lib.php:392 libraries/index.lib.php:44
@@ -537,8 +537,9 @@ msgstr ""
#: libraries/tracking.lib.php:532 libraries/tracking.lib.php:652
#: prefs_manage.php:277 prefs_manage.php:355
#: templates/columns_definitions/column_definitions_form.phtml:59
-#: templates/index_form.phtml:238 templates/table/selection_form.phtml:75
-#: view_create.php:276 view_operations.php:106
+#: templates/index_form.phtml:238 templates/startAndNumberOfRowsPanel.phtml:14
+#: templates/table/selection_form.phtml:75 view_create.php:276
+#: view_operations.php:106
msgid "Go"
msgstr ""
@@ -642,7 +643,7 @@ msgstr ""
msgid "Could not load the progress of the import."
msgstr ""
-#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:735
+#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:738
#: libraries/export.lib.php:464
#: libraries/plugins/schema/Export_Relation_Schema.class.php:302
#: user_password.php:208
@@ -736,7 +737,7 @@ msgstr ""
msgid "Version information:"
msgstr ""
-#: index.php:392 libraries/Util.class.php:429 libraries/Util.class.php:490
+#: 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/navigation/NavigationHeader.class.php:197
@@ -838,7 +839,7 @@ msgid ""
"issues."
msgstr ""
-#: js/messages.php:38 libraries/import.lib.php:125 sql.php:151
+#: js/messages.php:38 libraries/import.lib.php:125 sql.php:161
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
@@ -1045,7 +1046,7 @@ msgstr ""
msgid "Matched rows:"
msgstr ""
-#: js/messages.php:114 libraries/Util.class.php:638
+#: js/messages.php:114 libraries/Util.class.php:641
msgid "SQL query:"
msgstr ""
@@ -1088,12 +1089,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:131 libraries/Util.class.php:1460
+#: js/messages.php:131 libraries/Util.class.php:1463
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: js/messages.php:133 libraries/Util.class.php:1462
+#: js/messages.php:133 libraries/Util.class.php:1465
msgid "."
msgstr ""
@@ -1195,40 +1196,40 @@ msgid "Processes"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:167 libraries/Util.class.php:1404
+#: js/messages.php:167 libraries/Util.class.php:1407
msgid "B"
msgstr ""
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:168 libraries/Util.class.php:1406
+#: js/messages.php:168 libraries/Util.class.php:1409
#: libraries/server_status_monitor.lib.php:217
msgid "KiB"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:169 libraries/Util.class.php:1408
+#: js/messages.php:169 libraries/Util.class.php:1411
#: libraries/display_export.lib.php:702
#: libraries/server_status_monitor.lib.php:218
msgid "MiB"
msgstr ""
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:170 libraries/Util.class.php:1410
+#: js/messages.php:170 libraries/Util.class.php:1413
msgid "GiB"
msgstr ""
#. l10n: shortcuts for Terabyte
-#: js/messages.php:171 libraries/Util.class.php:1412
+#: js/messages.php:171 libraries/Util.class.php:1415
msgid "TiB"
msgstr ""
#. l10n: shortcuts for Petabyte
-#: js/messages.php:172 libraries/Util.class.php:1414
+#: js/messages.php:172 libraries/Util.class.php:1417
msgid "PiB"
msgstr ""
#. l10n: shortcuts for Exabyte
-#: js/messages.php:173 libraries/Util.class.php:1416
+#: js/messages.php:173 libraries/Util.class.php:1419
msgid "EiB"
msgstr ""
@@ -1247,7 +1248,7 @@ msgid "Traffic"
msgstr ""
#: js/messages.php:179 libraries/Menu.class.php:585
-#: libraries/Util.class.php:4390 libraries/server_status_monitor.lib.php:257
+#: libraries/Util.class.php:4395 libraries/server_status_monitor.lib.php:257
msgid "Settings"
msgstr ""
@@ -1536,8 +1537,8 @@ msgstr ""
#: js/messages.php:264 libraries/Menu.class.php:350
#: libraries/Menu.class.php:453 libraries/Menu.class.php:581
-#: libraries/Util.class.php:4389 libraries/Util.class.php:4404
-#: libraries/Util.class.php:4421 libraries/config/messages.inc.php:236
+#: libraries/Util.class.php:4394 libraries/Util.class.php:4409
+#: libraries/Util.class.php:4426 libraries/config/messages.inc.php:236
#: libraries/display_import.lib.php:105
#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:238
#: setup/frames/menu.inc.php:26
@@ -1607,7 +1608,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: js/messages.php:290 libraries/Header.class.php:456
+#: js/messages.php:290 libraries/Header.class.php:455
msgid "Page-related settings"
msgstr ""
@@ -1684,7 +1685,7 @@ msgstr ""
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:314 libraries/Util.class.php:3234
+#: js/messages.php:314 libraries/Util.class.php:3237
msgid "Enable foreign key checks"
msgstr ""
@@ -1719,9 +1720,9 @@ msgstr ""
#: js/messages.php:328 libraries/DisplayResults.class.php:4857
#: libraries/DisplayResults.class.php:5115 libraries/Menu.class.php:342
#: libraries/Menu.class.php:444 libraries/Menu.class.php:577
-#: libraries/Util.class.php:3675 libraries/Util.class.php:3676
-#: libraries/Util.class.php:4388 libraries/Util.class.php:4403
-#: libraries/Util.class.php:4420 libraries/config/messages.inc.php:230
+#: libraries/Util.class.php:3680 libraries/Util.class.php:3681
+#: libraries/Util.class.php:4393 libraries/Util.class.php:4408
+#: libraries/Util.class.php:4425 libraries/config/messages.inc.php:230
#: libraries/display_export.lib.php:167 libraries/rte/rte_list.lib.php:146
#: libraries/server_privileges.lib.php:2085
#: libraries/server_privileges.lib.php:2164
@@ -1770,11 +1771,11 @@ msgstr ""
#: js/messages.php:343 libraries/Console.class.php:88
#: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3450
#: libraries/DisplayResults.class.php:4839 libraries/Index.class.php:723
-#: libraries/Util.class.php:664 libraries/Util.class.php:1218
-#: libraries/Util.class.php:3673 libraries/Util.class.php:3674
+#: libraries/Util.class.php:667 libraries/Util.class.php:1221
+#: 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:775
+#: libraries/config/messages.inc.php:777
#: libraries/server_user_groups.lib.php:119
#: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179
msgid "Edit"
@@ -2518,63 +2519,63 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1620
+#: js/messages.php:655 libraries/Util.class.php:1623
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1622
+#: js/messages.php:657 libraries/Util.class.php:1625
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1624
+#: js/messages.php:659 libraries/Util.class.php:1627
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1626
+#: js/messages.php:661 libraries/Util.class.php:1629
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1628
+#: js/messages.php:663 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1630
+#: js/messages.php:665 libraries/Util.class.php:1633
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1632
+#: js/messages.php:667 libraries/Util.class.php:1635
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1634
+#: js/messages.php:669 libraries/Util.class.php:1637
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1636
+#: js/messages.php:671 libraries/Util.class.php:1639
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1638
+#: js/messages.php:673 libraries/Util.class.php:1641
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1640
+#: js/messages.php:675 libraries/Util.class.php:1643
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1642
+#: js/messages.php:677 libraries/Util.class.php:1645
msgid "Dec"
msgstr ""
@@ -2612,32 +2613,32 @@ msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1647
+#: js/messages.php:698 libraries/Util.class.php:1650
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1649
+#: js/messages.php:700 libraries/Util.class.php:1652
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1651
+#: js/messages.php:702 libraries/Util.class.php:1654
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1653
+#: js/messages.php:704 libraries/Util.class.php:1656
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1655
+#: js/messages.php:706 libraries/Util.class.php:1658
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1657
+#: js/messages.php:708 libraries/Util.class.php:1660
msgid "Sat"
msgstr ""
@@ -2779,7 +2780,7 @@ msgid "Please enter a valid HEX input"
msgstr ""
#: js/messages.php:785 libraries/Message.class.php:199
-#: libraries/Util.class.php:624 libraries/core.lib.php:245
+#: 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
msgid "Error"
@@ -2877,7 +2878,7 @@ msgid "Requery"
msgstr ""
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:790
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -2926,7 +2927,7 @@ msgstr ""
msgid "Explain"
msgstr ""
-#: libraries/Console.class.php:216 libraries/Util.class.php:1291
+#: libraries/Console.class.php:216 libraries/Util.class.php:1294
#: libraries/sql.lib.php:278
msgid "Profiling"
msgstr ""
@@ -3054,8 +3055,8 @@ msgstr ""
msgid "Count:"
msgstr ""
-#: libraries/Console.class.php:332 libraries/Util.class.php:1260
-#: libraries/config/messages.inc.php:777
+#: libraries/Console.class.php:332 libraries/Util.class.php:1263
+#: libraries/config/messages.inc.php:779
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3202,7 +3203,7 @@ msgstr ""
msgid "SQL query on database %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr ""
@@ -3226,25 +3227,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3284,9 +3285,9 @@ msgstr[0] ""
msgstr[1] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3340,28 +3341,28 @@ msgstr ""
msgid "Search this table"
msgstr ""
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr ""
@@ -3370,8 +3371,9 @@ msgstr ""
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3467,16 +3469,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr ""
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3484,7 +3486,7 @@ msgstr ""
msgid "Check All"
msgstr ""
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr ""
@@ -3577,11 +3579,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3645,8 +3647,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3662,7 +3664,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -3674,16 +3676,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3695,10 +3697,10 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3706,19 +3708,19 @@ msgid "SQL"
msgstr ""
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr ""
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3727,7 +3729,7 @@ msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3736,21 +3738,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr ""
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3767,16 +3769,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3784,16 +3786,16 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr ""
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3801,38 +3803,38 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr ""
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr ""
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -3857,7 +3859,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4460,12 +4462,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, possible-php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4476,118 +4478,114 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, possible-php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr ""
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, possible-php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, possible-php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, possible-php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, possible-php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr ""
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr ""
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr ""
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr ""
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr ""
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr ""
@@ -4610,13 +4608,13 @@ msgstr ""
msgid "Rows"
msgstr ""
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5021,7 +5019,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -5689,10 +5687,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6136,7 +6134,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6331,828 +6329,836 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
+msgid ""
+"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772
-msgid "Show statistics"
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+msgid "Retain query box"
msgstr ""
#: libraries/config/messages.inc.php:773
+msgid "Allow to display database and table statistics (eg. space usage)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:774
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7160,52 +7166,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7213,80 +7219,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7310,44 +7316,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr ""
@@ -12611,13 +12617,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: libraries/sql.lib.php:1767
+#, possible-php-format
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, possible-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 ""
+
+#: libraries/sql.lib.php:1817
#, possible-php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -13822,6 +13836,10 @@ msgstr ""
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr ""
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 338edea24b..98f8292452 100644
--- a/po/pl.po
+++ b/po/pl.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-01-21 02:11+0200\n"
"Last-Translator: Krystian Biesaga \n"
"Language-Team: Polish %s:"
msgstr "Zapytanie SQL do bazy danych %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Wyślij zapytanie"
@@ -3472,7 +3473,7 @@ msgstr "Aktualizuj zakładkę"
msgid "Delete bookmark"
msgstr "Usuń zakładkę"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3480,19 +3481,19 @@ msgstr ""
"Serwer nie odpowiada (lub gniazdo lokalnego serwera nie jest prawidłowo "
"skonfigurowane)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Serwer nie odpowiada."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Proszę sprawdzić uprawnienia katalogu zawierającej bazę danych."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Szczegóły…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Połączenie dla użytkownika kontrolnego zdefiniowanego w pliku "
@@ -3536,9 +3537,9 @@ msgstr[1] "%1$s dopasowania w %2$s"
msgstr[2] "%1$s dopasowań w %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3592,28 +3593,28 @@ msgstr "Filtrowanie wierszy"
msgid "Search this table"
msgstr "Szukaj w tej tabeli"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Początek"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Poprzednie"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Następne"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Koniec"
@@ -3622,8 +3623,9 @@ msgstr "Koniec"
msgid "All"
msgstr "Wszystko"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Liczba wierszy:"
@@ -3721,16 +3723,16 @@ msgid "Query took %01.4f seconds."
msgstr "Wykonanie zapytania trwało %01.4f sekund(y)."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Z zaznaczonymi:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3738,7 +3740,7 @@ msgstr "Z zaznaczonymi:"
msgid "Check All"
msgstr "Zaznacz wszystkie"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Podgląd wydruku"
@@ -3835,11 +3837,11 @@ msgstr "Brakuje Git informacji!"
msgid "Open new phpMyAdmin window"
msgstr "Otwórz nowe okno phpMyAdmina"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Kliknij na pasku, aby przewinąć do góry strony"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Obsługa javascript musi być włączona!"
@@ -3903,8 +3905,8 @@ msgstr "Klucz podstawowy został usunięty."
msgid "Index %s has been dropped."
msgstr "Klucz %s został usunięty."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3922,7 +3924,7 @@ msgstr ""
"usunięty."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Serwer"
@@ -3934,16 +3936,16 @@ msgid "View"
msgstr "Widok"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3955,10 +3957,10 @@ msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3966,19 +3968,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Szukaj"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3987,7 +3989,7 @@ msgid "Insert"
msgstr "Wstaw"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3996,21 +3998,21 @@ msgid "Privileges"
msgstr "Uprawnienia"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operacje"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Śledzenie"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4027,16 +4029,16 @@ msgstr "Wyzwalacze"
msgid "Database seems to be empty!"
msgstr "Baza danych wydaje się pusta!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Zapytanie"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Procedury i funkcje"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4044,16 +4046,16 @@ msgstr "Procedury i funkcje"
msgid "Events"
msgstr "Zdarzenia"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Widok projektu"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Centralne kolumny"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4061,38 +4063,38 @@ msgstr "Centralne kolumny"
msgid "Databases"
msgstr "Bazy danych"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Użytkownicy"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Dziennik binarny"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replikacja"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Zmienne"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Kodowania znaków"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Wtyczki"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Mechanizmy"
@@ -4120,7 +4122,7 @@ msgstr[0] "Wstawionych rekordów: %1$d."
msgstr[1] "Wstawionych rekordów: %1$d."
msgstr[2] "Wstawionych rekordów: %1$d."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4800,12 +4802,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Wyliczenie, wybrane z listy zdefiniowane wartości"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Maksymalny rozmiar: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4816,28 +4818,28 @@ msgstr "Maksymalny rozmiar: %s%s"
msgid "MySQL said: "
msgstr "MySQL zwrócił komunikat: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Wyjaśnij SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Pomiń wyjaśnienie SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Bez kodu PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Utwórz kod PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
@@ -4845,91 +4847,87 @@ msgid "Edit inline"
msgstr "Edytuj indeks"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Nie"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dni, %s godzin, %s minut i %s sekund"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Brakuje parametru:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Przejście do bazy danych \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Kliknij, aby przełączać"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Wyszukaj w komputerze:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Wybierz katalog serwera WWW dla uploadu %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Nie można znaleźć katalogu do zapisu przesyłanych plików."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Brak plików do załadowania!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Opróżnij"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Wykonaj"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Drukuj"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Data utworzenia"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Ostatnia aktualizacja"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Ostatnie sprawdzanie"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Początkowy wiersz:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Szukaj:"
@@ -4952,13 +4950,13 @@ msgstr "Użyj tej wartości"
msgid "Rows"
msgstr "Rekordy"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Dane"
@@ -5380,7 +5378,7 @@ msgid "Set value: %s"
msgstr "Ustaw wartość: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Przywróć wartość domyślną"
@@ -6197,10 +6195,10 @@ msgstr "Dostosuj tryb przeglądania."
msgid "Customize default options."
msgstr "Dostosuj domyślne opcje."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6701,7 +6699,7 @@ msgid "Maximum displayed SQL length"
msgstr "Maksymalna pokazywana długość SQL"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Użytkownicy nie mogą ustawić wyższej wartości"
@@ -6931,33 +6929,41 @@ msgstr "To są linki Edycja, Kopiuj i Usuń."
msgid "Where to show the table row links"
msgstr "Gdzie wyświetlić linki wiersza tabeli"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr "Użyj naturalnego porządku do sortowania nazw tabel i baz danych."
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Naturalny porządek"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Używaj tylko ikon, tylko tekstu lub obu."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Pasek nawigacji tabeli"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"Użyj buforowania wyjścia GZip dla zwiększenia szybkości transferów HTTP."
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "Kompresja wyjścia GZip"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid ""
#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
@@ -6969,19 +6975,19 @@ msgstr ""
"[kbd]SMART[/kbd] - tj. malejącej dla kolumny, wpisz DATE, DATETIME i "
"TIMESTAMP, a rosnącej inaczej"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Domyślny porządek sortowania"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Użyj trwałych połączeń do baz danych MySQL."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Trwałe połączenia"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -6996,11 +7002,11 @@ msgstr ""
"jeśli którekolwiek z tabel do przechowywania konfiguracji phpMyAdmin nie "
"można znaleźć"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if a difference between the "
@@ -7012,11 +7018,11 @@ msgstr ""
"Wyłącz ostrzeżenia domyślne, które są wyświetlane, jeśli różnica między "
"biblioteką a serwerem MySQL jest wykrywana"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Ostrzeżenie różnicy serwera/biblioteki"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7028,29 +7034,29 @@ msgstr ""
"Wyłącz domyślne ostrzeżenia na stronie Struktura, które są wyświetlane, "
"jeśli jakiekolwiek ze słów w nazwach kolumn są zastrzeżone dla MySQL"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Jak wyświetlić menu zakładki"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Jak wyświetlić różne linki działania"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
#, fuzzy
#| msgid "Disallow BLOB and BINARY columns from editing"
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Nie zezwalaj na BLOB i BINARNE kolumny z edycji"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Chroń kolumny binarne"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7060,46 +7066,46 @@ msgstr ""
"przechowywania konfiguracji). Jeśli jest wyłączona, to korzysta z JS-"
"procedury, aby wyświetlić historię zapytań (utracone przez zamknięte okna)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Permanentna historia zapytań"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Ile zapytań ma być przechowywanych w historii."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Długość historii zapytań"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
"Wybierz, które funkcje będą wykorzystywane do konwersji zestawu znaków."
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Konwersja silnika"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Podczas przeglądania tabel, sortowanie każdej tabeli jest pamiętane."
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Zapamiętaj sortowanie tabel"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Domyślny porządek sortowania"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
#, fuzzy
#| msgid ""
#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@@ -7108,85 +7114,85 @@ msgid ""
msgstr ""
"Powtarzanie nagłówków każdej komórki X, [kbd]0[/kbd] wyłącza tę funkcję"
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Powtórz nagłówki"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Montaż siatki: akcja wyzwalania"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Relacje wyświetlania kolumn"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "Opcje wyświetlania serwerów."
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Edytowanie siatki: zapisanie wszystkich zmodyfikowanych komórek naraz"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Katalog, w którym eksport może zapisywać na serwerze."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Katalog do zapisu"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Pozostaw puste, jeśli nie są używane."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Cel upoważnienia hosta"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Pozostaw puste, aby użyć wartości domyślnych."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Zasady autoryzacji hosta"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Pozwól na logowanie bez hasła"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Pozwól na logowanie się roota"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Wartość sesji"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
#, 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 "Nazwa Auth Realm wyświetlana podczas uwierzytelnienia HTTP Basic"
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid ""
#| "The path for the config file for [a@http://swekey.com]SweKey hardware "
@@ -7201,19 +7207,19 @@ msgstr ""
"SweKey[/a]. Relatywna ścieżka do głównego katalogu phpMyAdmin, np. ./swekey."
"conf"
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "Plik konfiguracyjny SweKey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Metoda uwierzytelniania w użyciu."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Typ uwierzytelniania"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7221,11 +7227,11 @@ msgstr ""
"Pozostaw puste, aby nie obsługiwać [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]zakładek[/a]. Sugerowana nazwa: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Tabela zakładek"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
@@ -7237,19 +7243,19 @@ msgstr ""
"Pozostaw puste bez uwag typu kolumn/mime, zasugerował: [kbd]pma_column_info[/"
"kbd]"
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Tabela informacji o kolumnach"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Kompresja połączenia z serwerem MySQL."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Kompresja połączenia"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
#, 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."
@@ -7257,15 +7263,15 @@ msgstr ""
"Sposób połączenia z serwerem; w razie niepewności, należy pozostawić "
"[kbd]tcp[/kbd]"
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Typ połączenia"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Hasło użytkownika monitorującego"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7279,11 +7285,11 @@ msgstr ""
"jest dostępnych pod adresem: [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Użytkownik monitorujący"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7291,11 +7297,11 @@ msgstr ""
"Alternatywny host do trzymania konfiguracji phpMyAdmin, pozostaw puste aby "
"użyć już zdefiniowanego hosta."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Kontrola hosta"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid ""
#| "An alternate port to connect to the host that holds the configuration "
@@ -7309,15 +7315,15 @@ msgstr ""
"Alternatywny port dla hosta trzymającego konfigurację phpMyAdmin, pozostaw "
"puste aby użyć ustawienia domyślnego lub z controlhost"
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Port sterowania"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Ukryj bazy danych pasujące do wyrażenia regularnego (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7326,15 +7332,15 @@ msgstr ""
"phpmyadmin/bugs/2606/]PMA bug tracker[/a] i [a@http://bugs.mysql."
"com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Wyłącz używanie INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Ukryj bazy danych"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7346,23 +7352,23 @@ msgstr ""
"Pozostaw puste, bez zapytania poparcie historii SQL, zasugerował: "
"[kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Tabela historii zapytań SQL"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Nazwa hosta, gdzie serwer MySQL działa."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Nazwa hosta serwera"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL wylogowania"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
#, fuzzy
#| msgid ""
#| "Limits number of table preferences which are stored in database, the "
@@ -7374,17 +7380,17 @@ msgstr ""
"Ograniczenia Liczby preferencje tabeli, które są przechowywane w bazie "
"danych, najstarsze rekordy są automatycznie usuwane"
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Maksymalna ilość preferencji tabeli do przechowywania"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "Zobacz status tabeli serwera podrzędnego"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7396,13 +7402,13 @@ msgstr ""
"Pozostaw puste, bez żadnego wsparcia PDF schematu, zaproponował: "
"[kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Central columns"
msgid "Central columns table"
msgstr "Centralne kolumny"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7414,15 +7420,15 @@ msgstr ""
"Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: "
"[kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Spróbuj połączyć się bez hasła."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Łącz się bez hasła"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7432,19 +7438,19 @@ msgstr ""
"modyfikacji, jeśli chcesz używać tych znaków w niesymbolicznym znaczeniu, "
"np. [kbd]'my\\_db'[/kbd], a nie [kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Pokaż tylko wymienione bazy danych"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Pozostaw puste w przypadku innego niż uwierzytelniania konfiguracji."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Hasło dla uwierzytelniania konfiguracji"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7455,11 +7461,11 @@ msgstr ""
"Pozostaw puste, bez żadnego wsparcia PDF schematu, zaproponował: "
"[kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "Schemat PDF: strony tabeli"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
@@ -7475,21 +7481,21 @@ msgstr ""
"pmadb]pmadb[/a]. Puste pole oznacza brak obsługi. Domyślna wartość: "
"[kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nazwa bazy danych"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Port, na którym nasłuchuje serwer MySQL, pole puste oznacza wartość domyślną."
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Port serwera"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7501,11 +7507,11 @@ msgstr ""
"Pozostaw puste dla nie \"trwałych\" tabel niedawno używanych w całej sesji, "
"zasugerował: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Ostatnio używane tabele"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7517,13 +7523,13 @@ msgstr ""
"Pozostaw puste dla nie \"trwałych\" tabel niedawno używanych w całej sesji, "
"zasugerował: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "Tabele Ulubione"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -7535,11 +7541,11 @@ msgstr ""
"Pozostaw puste, by nie obsługiwać [a@http://wiki.phpmyadmin.net/pma/"
"relation]relation-links[/a]. Sugerowana nazwa: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Tabela relacji"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -7551,33 +7557,33 @@ msgstr ""
"Zobacz przykład usługi pojedynczego logowania (Signon) [a@http://wiki."
"phpmyadmin.net/pma/auth_types#signon]authentication types[/a]"
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Nazwa sesji usługi pojedynczego logowania (Signon)"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "URL usługi pojedynczego logowania (Signon)"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Gniazdo, na którym nasłuchuje serwer MySQL, pole puste oznacza wartość "
"domyślną."
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Gniazdo serwera"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Włącz protokół SSL dla połączenia z serwerem MySQL."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Użyj SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7589,13 +7595,13 @@ msgstr ""
"Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: "
"[kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "Schemat PDF: współrzędne tabeli"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
#, fuzzy
#| msgid ""
#| "Table to describe the display columns, leave blank for no support; "
@@ -7607,11 +7613,11 @@ msgstr ""
"Tabela do opisu wyświetlania kolumn, pozostaw puste bez wsparcia; "
"zasugerował: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Wyświetlanie tabeli kolumn"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" tables'UI preferences across sessions, "
@@ -7623,11 +7629,11 @@ msgstr ""
"Pozostaw puste, by nie obsługiwać schematu PDF. Sugerowana nazwa: "
"[kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Preferencje UI tabeli"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7635,11 +7641,11 @@ msgstr ""
"Czy podczas tworzenia bazy danych polecenie DROP DATABASE IF EXISTS zostanie "
"dodane jako pierwsza linia w dzienniku."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Dodaj DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7647,11 +7653,11 @@ msgstr ""
"Czy polecenie DROP TABLE IF EXISTS zostanie dodane jako pierwsza linia w "
"dzienniku podczas tworzenia tabeli."
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Dodaj DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7659,20 +7665,20 @@ msgstr ""
"Czy polecenie DROP VIEW IF EXISTS zostanie dodane jako pierwsza linia w "
"dzienniku podczas tworzenia widoku."
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Dodaj DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Definiuje listę instrukcji automatycznego tworzenia używa dla nowych wersji."
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Instrukcje do śledzenia"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
@@ -7684,22 +7690,22 @@ msgstr ""
"Puste pole oznacza brak wsparcia śledzenia zapytań SQL, zaproponował: "
"[kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Tabela śledzenia zapytań SQL"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
"Czy mechanizm śledzenia tworzy wersje dla tabel i widoków automatycznie."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Automatyczne tworzenie wersji"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7711,33 +7717,33 @@ msgstr ""
"Pozostaw puste, dla braku preferencji użytkownika magazynu w bazie. "
"Zasugerowano: [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Tabela przechowująca preferencje użytkowników"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Tabela użytkowników"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Tabela grupy użytkowników"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7749,15 +7755,15 @@ msgstr ""
"Pozostaw puste, dla braku preferencji użytkownika magazynu w bazie. "
"Zasugerowano: [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Ukryte elementy nawigacji tabeli"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Użytkownik dla konfiguracji uwierzytelniania"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7765,11 +7771,11 @@ msgstr ""
"Przyjazny opis serwera dla użytkownika. Pozostaw puste, aby wyświetlić nazwę "
"hosta."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Szczegółowa nazwa serwera"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
#, 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."
@@ -7777,11 +7783,11 @@ msgstr ""
"Czy użytkownik powinien mieć wyświetlony przycisk \"pokaż wszystkie "
"(wiersze)\";"
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Pozwól wyświetlać wszystkie wiersze"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
#, fuzzy
#| msgid ""
#| "Please note that enabling this has no effect with [kbd]config[/kbd] "
@@ -7798,15 +7804,15 @@ msgstr ""
"pliku konfiguracyjnym. To nie ogranicza możliwości wykonania tego samego "
"polecenia bezpośrednio"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Pokaż formularz zmiany hasła"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Pokaż formularz tworzenia bazy danych"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables"
@@ -7815,13 +7821,13 @@ msgstr ""
"Pokaż lub ukryj kolumny wyświetlające 'Znacznik czasu tworzenia' dla "
"wszystkich tabel"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Komentarze tabeli"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables"
@@ -7830,11 +7836,11 @@ msgstr ""
"Pokaż lub ukryj kolumny wyświetlające 'Znacznik czasu tworzenia' dla "
"wszystkich tabel"
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Pokaż Znacznik czasu tworzenia"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last update timestamp for all tables"
@@ -7844,11 +7850,11 @@ msgstr ""
"Pokaż lub ukryj kolumny wyświetlające znaczniki czasu ostatniej aktualizacji "
"dla wszystkich tabel"
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Pokaż ostatni znacznik czasu aktualizacji"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last check timestamp for all tables"
@@ -7858,11 +7864,11 @@ msgstr ""
"Pokaż lub ukryj kolumny wyświetlające Ostatni znacznik czasu sprawdzania dla "
"wszystkich tabel"
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Pokaż Ostatni znacznik czasu sprawdzania"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7870,27 +7876,27 @@ msgstr ""
"Określa, czy typ pola powinny być początkowo wyświetlany w trybie edycji/"
"wstawiania."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Pokaż typy pól"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Wyświetla pola z funkcjami w trybie edycji/dodawania."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Pokaż pola z funkcjami"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Czy pokazać wskazówkę, czy nie."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Pokaż podpowiedź"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -7902,26 +7908,26 @@ msgstr ""
"Pokazuje odnośnik do [a@http://php.net/manual/function.phpinfo.php]phpinfo()"
"[/a]"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Pokaż odnośnik phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Pokaż szczegółowe informacje o serwerze MySQL"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
"Określa, czy zapytania SQL generowane przez phpMyAdmina powinny być "
"wyświetlane."
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Pokaż zapytania SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
#, fuzzy
#| msgid ""
#| "Defines whether the query box should stay on-screen after its submission"
@@ -7930,31 +7936,31 @@ msgid ""
msgstr ""
"Określa, czy pole zapytania, powinny pozostać na ekranie po jego złożeniu"
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Zachowaj pole zapytania"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Pozwala wyświetlać statystyki bazy danych i tabeli (np. wykorzystanie "
"miejsca)."
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Pokaż statystyki"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Oznacz używane tabele i pozwala pokazać bazy danych z zablokowanymi tabelami."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Pomiń zablokowane tabele"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7964,11 +7970,11 @@ msgstr ""
"Ostrzeżenie jest wyświetlane na stronie głównej, jeśli Suhosin jest "
"wykrywany."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Ostrzeżenie Suhosin"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7981,13 +7987,13 @@ msgstr ""
"Wyłącz domyślne ostrzeżenia na stronie Struktura, które są wyświetlane, "
"jeśli jakiekolwiek ze słów w nazwach kolumn są zastrzeżone dla MySQL"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Ważność ciasteczka logowania"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7999,11 +8005,11 @@ msgstr ""
"Rozmiar pola tekstowego (kolumny) w trybie edycji, wartość ta będzie "
"eksponowana zapytaniem SQL pola tekstowego (*2) i okna kwerendy (*1,25)"
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Pole tekstu kolumn"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -8015,31 +8021,31 @@ msgstr ""
"Wielkość pola textarea (wierszy) w trybie edycji. Wartość będzie powięszkona "
"dla zapytań SQL (*@) i okna zapytań (*1.25)"
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Wierszy w polu textarea"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr "Tytuł okna przeglądarki, gdy baza danych jest wybrana."
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Tytuł okna przeglądarki, gdy nic nie jest wybrane."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Domyślny tytuł"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "Tytuł okna przeglądarki, gdy serwer jest wybrany."
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "Tytuł okna przeglądarki, gdy tabela jest wybrane."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
#, fuzzy
#| msgid ""
#| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following "
@@ -8057,31 +8063,31 @@ msgstr ""
"nagłówku HTTP_X_FORWARDED_FOR (X-Forwarded-For) przesłanym przez serwer "
"pośredniczący (proxy) 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
"Lista zaufanych adresów IP serwerów pośredniczących (proxy) dla reguł allow/"
"deny"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr "Katalog na serwerze, gdzie można przesyłać pliki do importu."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Dodaj katalog"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
#, fuzzy
#| msgid "Allow for searching inside the entire database"
msgid "Allow for searching inside the entire database."
msgstr "Pozwól na przeszukiwanie całej bazy danych"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Użyj szukania bazy danych"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -8089,26 +8095,26 @@ msgstr ""
"Gdy wyłączone, użytkownicy nie mogą ustawić jeden z poniższych opcji, "
"niezależnie od wyboru po prawej stronie."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Włącz zakładkę deweloperską w ustawieniach"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Sprawdź, czy jest nowsza wersja"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "Włącza sprawdzanie, czy są aktualizacje na stronie głównej phpMyAdmin."
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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 "Sprawdzenie wersji"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8116,30 +8122,30 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Url Proxy"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Użytkownik proxy"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "Hasło do uwierzytelniania z serwerem proxy."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Hasło proxy"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8151,53 +8157,53 @@ msgstr ""
"Włącza format kompresji [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] dla operacji importu i eksportu"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Wpisz swój klucz publiczny do domeny usługi reCAPTCHA."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Klucz publiczny dla reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Wpisz swój klucz prywatny do domeny usługi reCAPTCHA."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Klucz prywatny dla reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "Wybierz domyślną akcję wysyłania raportów o błędach."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Wysyłanie raportów o błędzie"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "Zrealizowane zapytania"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8225,46 +8231,46 @@ msgstr "Uwierzytelnianie HTTP"
msgid "Signon authentication"
msgstr "Zarejestruj się na uwierzytelnianiu"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV przy użyciu LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Otwórz dokument arkusza kalkulacyjnego"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Szybko"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Dostosuj"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Opcje eksportu bazy danych"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV dla MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -14154,19 +14160,31 @@ msgstr "Korzystanie z zakładki \"%s\" jako domyślne przeglądanie zapytania."
msgid "Showing as PHP code"
msgstr "Pokaż jako kod PHP"
-#: libraries/sql.lib.php:1765
-#, fuzzy
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
#| msgid ""
#| "This table 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Tabela ta nie zawiera unikalnej kolumny. Funkcje związane z edycją siatki, "
"pól wyboru, edycji, kopiowania i usuwania łącza może nie działać."
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| msgid ""
+#| "This table 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"
+msgstr ""
+"Tabela ta nie zawiera unikalnej kolumny. Funkcje związane z edycją siatki, "
+"pól wyboru, edycji, kopiowania i usuwania łącza może nie działać."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemy z indeksami tabeli `%s`"
@@ -15514,6 +15532,10 @@ msgstr "Komentarz:"
msgid "Drag to reorder"
msgstr "Przeciągnij, aby uporządkować."
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Początkowy wiersz:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Wybierz kolumny (przynajmniej jedną):"
diff --git a/po/pt.po b/po/pt.po
index c6ce04a9c5..314effc490 100644
--- a/po/pt.po
+++ b/po/pt.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-06-11 18:18+0200\n"
"Last-Translator: Pedro Ribeiro \n"
"Language-Team: Portuguese %s:"
msgstr "Consulta SQL na base de dados %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Executar Consulta"
@@ -3483,7 +3484,7 @@ msgstr "Atualizar marcador"
msgid "Delete bookmark"
msgstr "Eliminar marcador"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3491,19 +3492,19 @@ msgstr ""
"O servidor não está a responder (ou o socket do servidor local está mal "
"configurado)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "O servidor não está a responder."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Verifique quais os privilégios que o directório da base de dados tem."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Informações…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"A ligação como utilizador de controlo definida na sua configuração falhou."
@@ -3544,9 +3545,9 @@ msgstr[0] "%1$s resultado em %2$s"
msgstr[1] "%1$s resultados em %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3600,28 +3601,28 @@ msgstr "Filtrar registos"
msgid "Search this table"
msgstr "Pesquisar esta tabela"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Início"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Anterior"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Seguinte"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Fim"
@@ -3630,8 +3631,9 @@ msgstr "Fim"
msgid "All"
msgstr "Todas"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Número de registos:"
@@ -3729,16 +3731,16 @@ msgid "Query took %01.4f seconds."
msgstr "A consulta demorou %01.4f segundos."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Com os seleccionados:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3746,7 +3748,7 @@ msgstr "Com os seleccionados:"
msgid "Check All"
msgstr "Todos"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Vista de impressão"
@@ -3843,11 +3845,11 @@ msgstr "Falta informação!"
msgid "Open new phpMyAdmin window"
msgstr "Abrir nova janela do phpMyAdmin"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Clique na barra para deslizar para o topo da página"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "O Javascript tem de estar activo a partir deste ponto!"
@@ -3911,8 +3913,8 @@ msgstr "A chave primária foi eliminada."
msgid "Index %s has been dropped."
msgstr "O Índice %s foi eliminado."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3929,7 +3931,7 @@ msgstr ""
"Os Índices %1$s e %2$s parecem ser iguais ou um deles pode ter sido removido."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Servidor"
@@ -3941,16 +3943,16 @@ msgid "View"
msgstr "Vista"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3962,10 +3964,10 @@ msgid "Structure"
msgstr "Estrutura"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3973,19 +3975,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Pesquisar"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3994,7 +3996,7 @@ msgid "Insert"
msgstr "Insere"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4003,21 +4005,21 @@ msgid "Privileges"
msgstr "Privilégios"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operações"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Rastreando"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4034,16 +4036,16 @@ msgstr "Acionadores"
msgid "Database seems to be empty!"
msgstr "A Base de Dados aparenta estar vazia!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Pesquisa por formulário"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rotinas"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4051,16 +4053,16 @@ msgstr "Rotinas"
msgid "Events"
msgstr "Eventos"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Desenhador"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Colunas centrais"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4068,38 +4070,38 @@ msgstr "Colunas centrais"
msgid "Databases"
msgstr "Base de Dados"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Utilizadores"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Registo binário"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replicação"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variáveis"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Mapas de Caracteres"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Plugins"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Motores"
@@ -4124,7 +4126,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d linha inserida."
msgstr[1] "%1$d linha(s) inseridas."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4808,12 +4810,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Uma enumeração, escolhida a partir da lista de valores definidos"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Tamanho máximo: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4824,28 +4826,28 @@ msgstr "Tamanho máximo: %s%s"
msgid "MySQL said: "
msgstr "Mensagens do MySQL : "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Explicar SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Saltar Explicar SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Sem código PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Criar código PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Print view"
msgctxt "Inline edit query"
@@ -4853,93 +4855,87 @@ msgid "Edit inline"
msgstr "Vista de impressão"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d-%B-%Y às %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dias, %s horas, %s minutos e %s segundos"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Parâmetros em falta:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Saltar para a Base de Dados \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "A funcionalidade %s é afectada por um bug conhecido, veja %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Clique para alternar"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Procurar no seu computador:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Selecionar a partir da directoria de upload do servidor %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Não é possivel alcançar a directoria que configurou para fazer upload."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Não existem ficheiros para fazer upload!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Limpa"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Executar"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Imprimir"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Criação"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Última actualização"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Última Verificação"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start row"
-msgid "Start row:"
-msgstr "Linha inicial"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Pesquisar:"
@@ -4962,13 +4958,13 @@ msgstr "Utilizar este valor"
msgid "Rows"
msgstr "Registos"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Dados"
@@ -5402,7 +5398,7 @@ msgid "Set value: %s"
msgstr "Definir valor: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Restaurar valor padrão"
@@ -6170,10 +6166,10 @@ msgstr "Personalizar modo de navegação."
msgid "Customize default options."
msgstr "Personalizar as opções por defeito."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "Dados CSV"
@@ -6658,7 +6654,7 @@ msgid "Maximum displayed SQL length"
msgstr "Largura máxima do SQL exibido"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Os utilizadores não podem definir um valor maior"
@@ -6886,32 +6882,40 @@ msgstr "Estas são ligações Editar, Copiar e Apagar."
msgid "Where to show the table row links"
msgstr "Onde mostrar as ligações da linha da tabela"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr "Usar ordem natural para ordenar nomes de tabelas e bases de dados."
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Ordem natural"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Usar apenas ícones, apenas texto ou ambos."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Barra de navegação de tabelas"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "Use o buffer de saída GZip para acelerar as transferências HTTP."
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "Buffer de saída GZip"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6919,19 +6923,19 @@ msgstr ""
"[kbd]SMART[/kbd] - i.e. ordem decrescente para colunas do tipo TIME, DATE, "
"DATETIME e TIMESTAMP, caso contrário, ordem ascendente."
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Ordenação padrão"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Usar ligações persistentes para bases de dados MySQL."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Ligações persistentes"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6941,11 +6945,11 @@ msgstr ""
"base de dados se alguma das tabelas requeridas para a configuração do "
"armazenamento do phpMyAdmin não for encontrada."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Tabelas de configuração de armazenamento phpMyAdmin em falta"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6953,11 +6957,11 @@ msgstr ""
"Desativa o aviso padrão que é mostrado quando é detetada uma diferença entre "
"a biblioteca MySQL e o servidor."
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Aviso de divergência Servidor/Biblioteca"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6966,27 +6970,27 @@ msgstr ""
"base de dados se algum dos nomes de coluna numa tabela forem palavras "
"reservadas do MySQL."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Aviso de palavra reservada ao MySQL"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Como mostrar os separadores do menu"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Como mostrar várias ligações de acções"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Não permitir edição de colunas BLOB e BINARY."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Proteger colunas binárias"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6996,130 +7000,130 @@ msgstr ""
"armazenamento phpMyAdmin). Se desativado, este utiliza rotinas-JS para "
"mostrar o histórico de consulta (perdido por fecho da janela)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Histórico de consultas permanente"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Quantas consultas são mantidas no histórico."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Tamanho do histórico de consultas"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
"Selecione quais funções serão usadas para conversão do conjunto de "
"caracteres."
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Motor de Recodificação"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Ao navegar nas tabelas, a ordenação de cada tabela é memorizada."
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Lembrar ordenação da tabela"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Ordenação padrão"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Repetir cabeçalhos a cada X células, [kbd]0[/kbd] desativa esta "
"funcionalidade."
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Repetir cabeçalhos"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Edição de grelha: executar ação"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Coluna de visualização relacional"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "Exibir as opções dos servidores."
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Edição em grade: gravar todas as células editadas duma única vez"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Pasta onde as exportações serão guardadas no Servidor."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Pasta para guardar"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Deixar em branco se não for usado."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Ordem de autorização do Anfitrião"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Deixe em branco por defeito."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Regras de autorização do anfitrião"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Permitir login sem uma palavra-passe"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Permitir login como root"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Valor de sessão"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "Nome do Domínio a apresentar quando é feita autenticação HTTP."
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "Domínio HTTP"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7129,19 +7133,19 @@ msgstr ""
"da máquina SweKey [/a] (não foi localizado na raiz do seu documento; "
"sugestão: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "Ficheiro de configuração Swekey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Método de autenticação a utilizar."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Tipo de autenticação"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7149,11 +7153,11 @@ msgstr ""
"Deixe em branco quando não há [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]bookmark[/a] suporte, sugerido: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Tabela de favoritos"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7161,31 +7165,31 @@ msgstr ""
"Deixe em branco quando não houver colunas de comentário/tipo mime, "
"sugeridas: [kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Tabela de informações de coluna"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Comprimir ligação ao servidor MySQL."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Comprimir ligação"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "Como se ligar ao servidor, manter [kbd]tcp[/kbd] se não tiver certeza."
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Tipo de ligação"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Plavara-passe de utlizador de controlo"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7194,11 +7198,11 @@ msgstr ""
"informações disponíveis em [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Utilizador de controlo"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7206,11 +7210,11 @@ msgstr ""
"Um servidor alternativo para armazenar a configuração; deixe em branco para "
"utilizar um servidor já definido."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Controlar host"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7220,15 +7224,15 @@ msgstr ""
"configuração; deixe em branco para utilizar a porta padrão, ou a porta pré-"
"definida, se o servidor de controlo for igual ao servidor."
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Controlar porta"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Ocultar bases de dados correspondentes a expressão regular (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7236,15 +7240,15 @@ msgstr ""
"Mais informações em [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"rastreador de bug [/a] e [a@http://bugs.mysql.com/19588]Bugs MySQL[/a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Desativar o uso do INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Ocultar bases de dados"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7252,23 +7256,23 @@ msgstr ""
"Deixe em branco se não houver/quiser suporte a histórico de consulta SQL, "
"sugerido: [kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Tabela de histórico das consultas SQL"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Nome do Servidor onde o MYSQL está a ser executado."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Nome do servidor"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL de fim de sessão"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7276,15 +7280,15 @@ msgstr ""
"Limita o número de preferências de tabela armazenadas na base de dados, os "
"registos mais antigos são automaticamente removidos."
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Número máximo de preferências de tabela a armazenar"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7296,13 +7300,13 @@ msgstr ""
"Deixe em branco se não houver/quiser suporte de esquema PDF, sugerido: "
"[kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Central columns"
msgid "Central columns table"
msgstr "Colunas centrais"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7314,15 +7318,15 @@ msgstr ""
"Deixe em branco se não houver/quiser suporte de esquema PDF, sugerido: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Tentar ligar sem palavra-passe."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Ligar sem palavra-passe"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7332,30 +7336,30 @@ msgstr ""
"invertida se quiser usar suas instâncias literais, ou seja, use [kbd]'my"
"\\_db'[/kbd] e não [kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Mostrar apenas bases de dados listadas"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Deixar vazio se não utilizar autenticação por config."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Palavra-passe para config-auth"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Deixe em branco se não houver/quiser suporte de esquema PDF, sugerido: "
"[kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "Esquema PDF: tabela de páginas"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7366,21 +7370,21 @@ msgstr ""
"informações. Deixe em branco para nenhum apoio. Sugerido: [kbd]phpmyadmin[/"
"kbd]."
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nome da base de dados"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Porta na qual o servidor Mysql está atento, deixe em branco por defeito."
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Porta do servidor"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7388,11 +7392,11 @@ msgstr ""
"Deixe em branco para que não hajam tabelas recentes \"persistentes\" ao "
"longo das sessões, sugeridas: [kbd]pma_column_info[/kbd]."
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Tabela utilizada recentemente"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7404,13 +7408,13 @@ msgstr ""
"Deixe em branco para que não hajam tabelas recentes \"persistentes\" ao "
"longo das sessões, sugeridas: [kbd]pma_column_info[/kbd]."
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "Tabelas Favoritas"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7419,11 +7423,11 @@ msgstr ""
"net/pma/bookmark]ligações de relações[/a], sugerido: [kbd]pma__bookmark[/"
"kbd]."
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Tabela de relações"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7431,32 +7435,32 @@ msgstr ""
"Consulte [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipos de "
"autenticação[/a] para obter um exemplo."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Nome da sessão"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "URL de Signon"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"O socket no qual MySQL server está atento, deixe em branco para o padrão."
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Socket do servidor"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Ative o SSL para as ligações com o servidor de MySQL."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Usar SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7464,13 +7468,13 @@ msgstr ""
"Deixe em branco se não houver/quiser suporte de esquema PDF, sugerido: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "Esquema PDF: Coordenadas de tabela"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7478,11 +7482,11 @@ msgstr ""
"Tabela para descrever as colunas mostradas, deixe em branco se não houver/"
"quiser suporte, sugerido: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Mostrando comentários das colunas"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7490,11 +7494,11 @@ msgstr ""
"Deixe em branco para que não hajam tabelas \"persistentes\"com preferências "
"ao longo das sessões, sugerido: [kbd]pma_pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Preferencias UI de tabela"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7502,11 +7506,11 @@ msgstr ""
"Se será acrescentada uma instrução DROP DATABASE IF EXISTS como primeira "
"linha para o log ao criar uma base de dados."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Adicionar DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7514,11 +7518,11 @@ msgstr ""
"Será acrescentada uma instrução DROP TABLE IF EXISTS na primeira linha para "
"o registo ao criar uma tabela."
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Adicionar DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7526,20 +7530,20 @@ msgstr ""
"Se uma instrução DROP VIEW IF EXISTS será adicionada como primeira linha ao "
"log, quando se cria um view."
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Adicionar DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Define a lista de instruções que o auto-creation usa para novas versões."
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Instruções para rastrear"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7547,11 +7551,11 @@ msgstr ""
"Deixe em branco se não há suporte ao rastreamento de consulta SQL, sugerido: "
"[kbd]pma_history[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Tabela de histórico de consultas do SQL"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7559,11 +7563,11 @@ msgstr ""
"Se o mecanismo de rastreamento cria versões para tabelas e vistas "
"automaticamente."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Criar versões automaticamente"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7571,11 +7575,11 @@ msgstr ""
"Deixe em branco para não armazenar na base de dados as preferências de "
"utilizadores, sugerido: [kbd]pma_designer_coords[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Tabela de armazenamento das preferências do utilizador"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7585,11 +7589,11 @@ msgstr ""
"para ativar a funcionalidade de menus configuráveis; Deixando uma delas em "
"branco, irá desativar esta funcionalidade; sugerido: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Tabela de utilizadores"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7600,11 +7604,11 @@ msgstr ""
"branco irá desabilitar esta funcionalidade, sugerido: [kbd]pma__usergroups[/"
"kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Tabela de grupos do utilizador"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7612,15 +7616,15 @@ msgstr ""
"Deixe em branco para desabilitar a funcionalidade de esconder ou mostrar os "
"itens de navegação, sugerido: [kbd]pma_navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Tabela dos itens de navegação oculta"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Utilizador para a configuração de autenticação"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7628,20 +7632,20 @@ msgstr ""
"Uma descrição de fácil compreensão deste servidor. Deixe em branco para "
"mostrar o nome do servidor (hostname)."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Nome detalhado deste servidor"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
"Se um utilizador deve visualizar um botão \"mostrar todos (registos)\"."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Permitir a exibição de todas as filas"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7652,15 +7656,15 @@ msgstr ""
"ficheiro de configuração; isto não impossibilita que o mesmo comando seja "
"executado diretamente."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Mostrar o formulário de mudança de password"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Mostrar o formulário de criação de base de dados"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables."
@@ -7669,45 +7673,45 @@ msgstr ""
"Mostrar ou esconder a coluna que exibe a Criação de timestamp em todas as "
"tabelas."
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Comentários da tabela"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Mostrar ou esconder a coluna que exibe a Criação de timestamp em todas as "
"tabelas."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Mostrar data (timestamp) da criação"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Mostra ou esconde uma coluna com a data(timestamp) da última atualização em "
"todas as tabelas."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Mostrar a data (timestamp) da última actualização"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Mostra ou esconde uma coluna com a data(timestamp) da última verificação em "
"todas as tabelas."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Mostrar a data (timestamp) da última verificação"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7715,27 +7719,27 @@ msgstr ""
"Define se os tipos de campo devem ser mostrados inicialmente no modo editar/"
"inserir, ou não."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Mostrar os tipos dos campos"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Mostrar os campos de função no modo editar/inserir."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Mostrar os campos da função"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Se mostra sugestão ou não."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Mostrar sugestão"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7743,54 +7747,54 @@ msgstr ""
"Mostra o link para [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/"
"a] resultado."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Mostrar o link phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Mostrar informação detalhada do servidor MySQL"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "Define se as consultas SQL geradas pelo phpMyAdmin devem ser exibidas."
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Mostrar consultas SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
"Define se a caixa de consultas deve permanecer aberta depois da sua "
"submissão."
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Reter a caixa da consulta (query)"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Permitir exibir estatísticas da base de dados e tabelas (por exemplo, uso de "
"espaço)."
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Mostrar estatísticas"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Ignorar tabelas bloqueadas"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7798,11 +7802,11 @@ msgid ""
"detected."
msgstr "É exibido um aviso na página principal se Suhosin for detetado."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Aviso do Suhosin"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7816,13 +7820,13 @@ msgstr ""
"base de dados se algum dos nomes de coluna numa tabela forem palavras "
"reservadas do MySQL."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Validade do cookie de inicio de sessão"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7835,11 +7839,11 @@ msgstr ""
"alterado para caixas de texto de consultas SQL (*2) e para janelas de "
"consultas (*1.25)."
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Colunas da área de texto"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7852,32 +7856,32 @@ msgstr ""
"para caixas de texto de consultas SQL (*2) e para janelas de consultas "
"(*1.25)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Linhas da área de texto"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
"Título da janela do navegador quando uma base de dados estiver selecionada."
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Título da janela do navegador quando nada estiver selecionado."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Título por defeito"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "Título da janela do navegador quando um servidor estiver selecionado."
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "Título da janela do navegador quando uma tabela estiver selecionada."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7885,27 +7889,27 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Lista de proxies de confiança para permitir/proibir IPs"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr "Directoria no servidor onde podes carregar arquivos para importar."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Pasta de upload"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Permitir pesquisas dentro da base de dados."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Utilizar a pesquisa da base de dados"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7913,27 +7917,27 @@ msgstr ""
"Quando desabilitado, os utilizadores não podem definir nenhuma das opções em "
"baixo, independentemente da caixa de verificação da direita."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Activar o separador Programador nas definições"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Verificar se é a última versão"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
"Possibilita a verificação da última versão na página inicial do phpMyAdmin."
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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ção da versão"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7945,11 +7949,11 @@ msgstr ""
"isto se o servidor onde o phpMyAdmin está instalado não tem acesso direto À "
"internet. O formato é:\"nomeservidor:númeroporta\"."
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "URL da proxy"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7960,19 +7964,19 @@ msgstr ""
"feita a Autenticação Básica. Não é possível efetuar mais nenhum tipo de "
"autenticação de momento."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Nome de utilizador da proxy"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "A senha para se autenticar na proxy."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Senha da proxy"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7980,51 +7984,51 @@ msgstr ""
"Activar a compressão [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/"
"a] para operações de importação e exportação."
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Introduz a tua chave pública para o serviço reCaptcha do teu domínio."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Chave pública para o reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Introduz a tua chave privada para o serviço reCaptcha do teu domínio."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Chave privada para o reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "Escolhe a opção por defeito ao enviar relatórios de erros."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Enviar relatórios de erro"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8054,44 +8058,44 @@ msgstr "Autenticação HTTP"
msgid "Signon authentication"
msgstr "Autenticação Signon"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV usando o LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Folha de cálculo OpenDocument"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Rápido"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Personalizado"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Opções de exportação da Base de Dados"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "dados CSV para MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Texto OpenDocument"
@@ -13868,20 +13872,33 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
-#, fuzzy
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
#| 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Esta tabela não contém uma coluna exclusiva. Funções relacionados com a "
"edição da tabela, checkbox, Editar, Copiar e Eliminar links podem não "
"funcionar depois de guardar."
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Esta tabela não contém uma coluna exclusiva. Funções relacionados com a "
+"edição da tabela, checkbox, Editar, Copiar e Eliminar links podem não "
+"funcionar depois de guardar."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -15280,6 +15297,12 @@ msgstr "Comentário"
msgid "Drag to reorder"
msgstr "Arraste para re-ordenar."
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start row"
+msgid "Start row:"
+msgstr "Linha inicial"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Seleccione colunas (no mínimo um):"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index abb4884ea0..d21be36492 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-06-03 16:37+0200\n"
"Last-Translator: Guilherme Souza Silva \n"
"Language-Team: Portuguese (Brazil) %s:"
msgstr "Consulta SQL ao banco de dados %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Enviar query"
@@ -3423,7 +3424,7 @@ msgstr "Atualizar marcador"
msgid "Delete bookmark"
msgstr "Excluir marcador"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3431,20 +3432,20 @@ msgstr ""
"O servidor não está respondendo (ou o soquete do servidor local não está "
"configurado corretamente)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "O servidor não está respondendo."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
"Por favor verifique os privilégios do diretório que contém o banco de dados."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Detalhes…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"A conexão para o controle do usuário, como definida nas configurações, "
@@ -3486,9 +3487,9 @@ msgstr[0] "%1$s resultado em %2$s"
msgstr[1] "%1$s resultados em %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3542,28 +3543,28 @@ msgstr "Filtrar linhas"
msgid "Search this table"
msgstr "Procurar nesta tabela"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Início"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Anterior"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Próximo"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Fim"
@@ -3572,8 +3573,9 @@ msgstr "Fim"
msgid "All"
msgstr "Todos"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Número de linhas:"
@@ -3671,16 +3673,16 @@ msgid "Query took %01.4f seconds."
msgstr "Consulta levou %01.4f segundos."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Com marcados:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3688,7 +3690,7 @@ msgstr "Com marcados:"
msgid "Check All"
msgstr "Marcar todos"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Imprimir view"
@@ -3785,11 +3787,11 @@ msgstr "Faltando informações do Git!"
msgid "Open new phpMyAdmin window"
msgstr "Abrir nova janela do phpMyAdmin"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Clique na barra para rolar até o topo da página"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "O JavaScript deve estar ativo após este ponto!"
@@ -3853,8 +3855,8 @@ msgstr "A chave primária foi deletada."
msgid "Index %s has been dropped."
msgstr "Índice %s foi eliminado."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3872,7 +3874,7 @@ msgstr ""
"removida."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Servidor"
@@ -3884,16 +3886,16 @@ msgid "View"
msgstr "Visualizar"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3905,10 +3907,10 @@ msgid "Structure"
msgstr "Estrutura"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3916,19 +3918,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Procurar"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3937,7 +3939,7 @@ msgid "Insert"
msgstr "Inserir"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3946,21 +3948,21 @@ msgid "Privileges"
msgstr "Privilégios"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operações"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Monitoramento"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3977,16 +3979,16 @@ msgstr "Gatilhos"
msgid "Database seems to be empty!"
msgstr "O banco de dados parece estar vazio!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Consulta"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rotinas"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3994,16 +3996,16 @@ msgstr "Rotinas"
msgid "Events"
msgstr "Eventos"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Designer"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Colunas centrais"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4011,38 +4013,38 @@ msgstr "Colunas centrais"
msgid "Databases"
msgstr "Bancos de dados"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Usuários"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Log binário"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replicação"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variáveis"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Charsets"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Plugins"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Motores"
@@ -4067,7 +4069,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d linha inserida."
msgstr[1] "%1$d linhas inseridas."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4750,12 +4752,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Uma enumeração, escolhida de uma lista de valores definidos"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Tamanho máximo: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4766,119 +4768,115 @@ msgstr "Tamanho máximo: %s%s"
msgid "MySQL said: "
msgstr "Mensagem do MySQL: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Demonstrar SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Pular demonstração do SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Sem código PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Criar código PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Editar índice"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d/%m/%Y às %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dias, %s horas, %s minutos e %s segundos"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Parâmetro ausente:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Ir para o banco de dados '%s'."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Clique para alternar"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Procurar no seu computador:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Selecionar a partir do diretório de upload do servidor %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
"O diretório que você especificou para subir arquivos não foi encontrado."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Não existem arquivos para envio!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Limpar"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Executar"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Imprimir"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Criação"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Última atualização"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Última verificação"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Linha inicial:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Procurar:"
@@ -4901,13 +4899,13 @@ msgstr "Usar este valor"
msgid "Rows"
msgstr "Linhas"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Dados"
@@ -5330,7 +5328,7 @@ msgid "Set value: %s"
msgstr "Definir valor: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Restaurar valor padrão"
@@ -6090,10 +6088,10 @@ msgstr "Personalizar modo de navegação."
msgid "Customize default options."
msgstr "Personalizar opções padrão."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6578,7 +6576,7 @@ msgid "Maximum displayed SQL length"
msgstr "Comprimento máximo do SQL exibido"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Usuários não podem definir um valor maior"
@@ -6799,32 +6797,40 @@ msgstr "Estes são os links de Editar, Copiar e Apagar."
msgid "Where to show the table row links"
msgstr "Onde mostrar os links de linha de tabela"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr "Usar ordem natural para ordenar nomes de tabelas e bancos de dados."
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Ordem natural"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Usar apenas ícones, apenas texto ou ambos."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Barra de navegação com ícones"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "Use o buffer de saída GZip para acelerar as transferências HTTP."
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "Buffer de saída GZip"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6832,19 +6838,19 @@ msgstr ""
"[kbd]SMART[/kbd] - i.e. ordem decrescente para colunas do tipo TIME, DATE, "
"DATETIME e TIMESTAMP, caso contrário, ordem ascendente."
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Ordem de ordenação padrão"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Usar conexões persistentes para bancos de dados MySQL."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Conexões persistentes"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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 +6860,11 @@ msgstr ""
"dados Estrutura se alguma das tabelas exigidas pelo armazenamento de "
"configurações do phpMyAdmin não for encontrada."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Tabelas do armazenamento de configurações do phpMyAdmin faltando"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6866,11 +6872,11 @@ msgstr ""
"Desabilita o aviso padrão que é exibido se é detectada uma diferença entre "
"as bibliotecas do MySQL e do servidor."
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Aviso de diferença servidor/biblioteca"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6878,27 +6884,27 @@ msgstr ""
"Desabilita o aviso padrão que é exibido na página de Estrutura se os nomes "
"de colunas em uma tabela forem palavras reservadas do MySQL."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Aviso de palavra reservada do MySQL"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Como mostrar o menu com abas"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Como exibir vários links de ação"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Impedir a edição de colunas BLOB e BINARY."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Proteger colunas binárias"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6909,109 +6915,109 @@ msgstr ""
"serão utilizadas rotinas JS para exibir o histórico de consultas (que será "
"perdido se a janela for fechada)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Histórico de consultas permanente"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Quantas consultas são mantidas no histórico."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Tamanho do histórico de consultas"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
"Selecione quais funções serão usadas para conversão do conjunto de "
"caracteres."
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Mecanismo de gravação"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
"Quando navegar por tabelas, a organização de cada tabela será lembrada."
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Lembrar a ordenação das tabelas"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr "Ordenação predeterminada para tabelas com uma chave primária."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Ordenação predeterminada por chave primária"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Repetir cabeçalhos a cada X células, [kbd]0[/kbd] desativa esta "
"funcionalidade."
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Repetir cabeçalhos"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Edição de grade: acionar ação"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Exibição relacional"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "Para exibir as Opções"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Edição de grade: salvar todas a células editadas de uma vez"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Diretório onde a exportação será salva no servidor."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Diretório de arquivos salvos"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Deixe em branco se não usado."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Pedido de autorização do servidor"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Deixe em branco para usar o padrão."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Regras de autorização do servidor"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Permitir login sem uma senha"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Permitir login como root"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Fuso horário da sessão"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -7019,15 +7025,15 @@ msgstr ""
"Define o fuso horário efetivo; possivelmente diferente do fuso horário do "
"servidor de banco de dados"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "Nome do domínio a mostrar quando fizer autenticação por HTTP."
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "Domínio HTTP"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7037,19 +7043,19 @@ msgstr ""
"equipamento de autenticação SweKey [/a] (não localizado na raiz do seu "
"documento; sugestão: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "Arquivo de configuração Swekey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Método de autenticação a ser usado."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Tipo de autenticação"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7057,11 +7063,11 @@ msgstr ""
"Deixe em branco para não permitir [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]marcações[/a], sugerido: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Tabela de favoritos"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7069,31 +7075,31 @@ msgstr ""
"Deixe em branco quando não houver comentários/tipos mime, sugestão: "
"[kbd]pma_column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Tabela de informação de coluna"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Conexão compactada ao servidor MySQL."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Conexão compactada"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "Como conectar ao servidor, mantenha [kbd]tcp[/kbd] na dúvida."
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Tipo de conexão"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Senha do usuário controlador"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7102,11 +7108,11 @@ msgstr ""
"mais informações disponíveis na [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Usuário controlador"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7114,11 +7120,11 @@ msgstr ""
"Um servidor alternativo para armazenar a configuração; deixe em branco para "
"usar um servidor já definido."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Controle de host"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7128,15 +7134,15 @@ msgstr ""
"deixe em branco para usar a porta padrão, ou a porta já definida, se o "
"controlhost for igual ao host."
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Porta de controle"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Oculta bancos de dados com expressão regular combinada (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7144,15 +7150,15 @@ msgstr ""
"Mais informações em [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"rastreador de bugs [/a] e [a@http://bugs.mysql.com/19588]Bugs MySQL[/a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Desabilitar o uso do INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Ocultar bancos de dados"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7160,23 +7166,23 @@ msgstr ""
"Deixe em branco se não houver suporte a histórico de consulta SQL, sugestão: "
"[kbd]pma_history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Tabela de histórico das consultas SQL"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Nome do servidor onde o MySQL Server está rodando."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Nome do servidor (hostname)"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL de logout"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7184,15 +7190,15 @@ msgstr ""
"Limita o número de preferências de tabela que são armazenadas no banco de "
"dados, os registros mais antigos são removidos automaticamente."
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Número máximo de preferências de tabela a armazenar"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "Tabela de buscas salvas QBE"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7200,11 +7206,11 @@ msgstr ""
"Deixe em branco se não houver suporte à buscas salvas QBE, sugestão: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Tabela de colunas centrais"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7212,15 +7218,15 @@ msgstr ""
"Deixe em branco para desativar o suporte a colunas centrais, sugestão: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Tenta conectar sem senha."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Conectar sem senha"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7229,30 +7235,30 @@ msgstr ""
"Voce pode usar coringas MySQL (% e _), remova-os se você quiser usar suas "
"instâncias literais, ex: use [kbd]'meu\\_db'[/kbd] e não [kbd]'meu_db'[/kbd]."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Exibir apenas bancos de dados listados"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Deixe em branco se não usar a autenticação por configuração."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Senha para a autenticação por configuração"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Deixe em branco se não houver suporte a PDF, sugestão: [kbd]pma_pdf_pages[/"
"kbd]."
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "Esquema PDF: tabela de páginas"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7262,21 +7268,21 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] para informações completa. "
"Deixe em branco se não houver suporte. Sugestão: [kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nome do banco de dados"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Porta na qual o servidor MySQL opera, deixe em branco para usar a padrão."
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Porta do servidor"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7284,11 +7290,11 @@ msgstr ""
"Deixe em branco se não houver tabelas persistentes recentemente usadas entre "
"as sessões, sugestão: [kbd]pma_recent[/kbd]."
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Tabelas recentemente usadas"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7296,11 +7302,11 @@ msgstr ""
"Deixe em branco se não houver tabela(s) favorita(s) \"persistente\" através "
"de sessões, sugerido: [kbd]pma__favorite[/kbd]."
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Tabelas favoritas"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7308,11 +7314,11 @@ msgstr ""
"Deixe em branco se não houver suporte a [a@http://wiki.phpmyadmin.net/pma/"
"relation]links de relação[/a], sugestão: [kbd]pma_relation[/kbd]."
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Tabela de relacionamentos"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7320,33 +7326,33 @@ msgstr ""
"Veja os [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipos de "
"autenticação [/a] para ver um exemplo."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Nome da sessão de Signon"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "URL de Signon"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Socket (TCP) no qual o MYSQL está operando, deixe em branco para usar o "
"padrão."
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Socket do servidor"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Habilitar SSL para conexões no servidor MySQL."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Utilizar SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7354,11 +7360,11 @@ msgstr ""
"Deixe em branco se não houver suporte a esquema PDF, sugestão: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Desenho e esquema em PDF: tabela de coordenadas"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7366,11 +7372,11 @@ msgstr ""
"Tabela que descreve as colunas de exibição, deixe em branco para não "
"fornecer suporte; sugestão: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Exibir tabela de colunas"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7379,11 +7385,11 @@ msgstr ""
"interfaces de usuário em todas as sessões, sugestão: "
"[kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Tabela de preferências visuais"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7391,11 +7397,11 @@ msgstr ""
"Quando o comando DROP DATABASE IF EXISTS deverá ser adicionado como primeira "
"linha do log quando estiver criando um bando de dados."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Adicionar DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7403,11 +7409,11 @@ msgstr ""
"Quando um comando DROP TABLE IF EXISTS deverá ser adicionado como primeira "
"linha do log quando estiver criando uma tabela."
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Adicionar DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7415,19 +7421,19 @@ msgstr ""
"Quando um comando DROP VIEW IF EXISTS deverá ser adicionado como primeira "
"linha do log quando estiver criando uma view."
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Adicionar DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr "Define a lista de comandos que a auto-criação usa para novas versões."
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Comandos a rastrear"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7435,11 +7441,11 @@ msgstr ""
"Deixe em branco para não oferecer suporte a rastreamento de consultas SQL, "
"sugestão: [kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Tabela de rastreamento de consultas SQL"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7447,11 +7453,11 @@ msgstr ""
"Quando o mecanismo de rastreamento cria versões de tabelas e visões "
"automaticamente."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Criar versões automaticamente"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7459,11 +7465,11 @@ msgstr ""
"Deixe em branco para não usar armazenamento de preferências do usuário em "
"banco de dados, sugestão: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Tabela de armazenamento de preferências de usuário"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7473,11 +7479,11 @@ msgstr ""
"habilitar a função de menus configuráveis; deixar qualquer uma delas vazia "
"irá desativar essa função; sugestão: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Tabelas dos usuários"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7487,11 +7493,11 @@ msgstr ""
"função de menus configuráveis; deixar qualquer uma delas vazia irá desativar "
"essa função; sugestão: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Tabela de grupos de usuário"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7499,15 +7505,15 @@ msgstr ""
"Deixe em branco para desativar o recurso de ocultar e exibir itens de "
"navegação. Sugestão: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Tabela de navegação de itens ocultos"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Usuário para autenticação de configuração"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7515,19 +7521,19 @@ msgstr ""
"Uma descrição transparente deste servidor. Deixe em branco para exibir o "
"nome do computador."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Nome completo deste servidor"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "Se exibe ao usuário o botão \"exibir tudo(linhas)\"."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Permitir mostrar todas as linhas"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7537,15 +7543,15 @@ msgstr ""
"por [kbd]configuração[/kbd] porque a senha está escrita no arquivo de "
"configuração; isto não limita a habilidade de executar o comando diretamente."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Mostrar formulário de mudança de senha"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Mostrar formulário de criação de banco de dados"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables."
@@ -7554,43 +7560,43 @@ msgstr ""
"Mostrar ou ocultar uma coluna que exiba a data e hora de criação para todas "
"tabelas."
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr "Mostrar comentários da tabela"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Mostrar ou ocultar uma coluna que exiba a data e hora de criação para todas "
"tabelas."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Mostrar data e hora da criação"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Mostrar ou ocultar uma coluna que exiba a data e hora da última atualização "
"para todas tabelas."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Mostrar data e hora da última atualização"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Mostrar ou ocultar uma coluna que exiba a data e hora da última verificação "
"para todas tabelas."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Mostrar data e hora da última verificação"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7598,27 +7604,27 @@ msgstr ""
"Define se os tipos dos campos serão ou não exibidos inicialmente no modo "
"editar/inserir."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Exibir o tipo dos campos"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Exibe os campos de função em modo editar/inserir."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Mostra campos de função"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Se uma dica será exibida ou não."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Exibir dica"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7626,55 +7632,55 @@ msgstr ""
"Exibe link para saída de [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Exibir link para o phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Exibir informações detalhadas do servidor MySQL"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "Define se as consultas SQL geradas pelo phpMyAdmin devem ser exibidas."
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Mostrar consultas SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
"Define se a caixa de consulta deve permanecer em tela depois de seu envio."
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Manter caixa de consulta"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Permitir visualizar banco de dados e estatísticas da tabela (ex: uso de "
"espaço)."
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Mostrar estatísticas"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Marcar tabelas usadas e tornar possível mostrar bancos de dados com tabelas "
"bloqueadas."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Exibir tabelas bloqueadas"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7683,11 +7689,11 @@ msgid ""
msgstr ""
"Um alerta é exibido na página principal se o pacote Suhosin for detectado."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Aviso do Suhosin"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 "
@@ -7697,11 +7703,11 @@ msgstr ""
"configuração do PHP 'session.gc_maxlifetime' é menor que o valor de "
"`LoginCookieValidity`."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "Aviso de validade do cookie de login"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7713,11 +7719,11 @@ msgstr ""
"Tamanho do campo (colunas) em modo edição, o valor será enfatizado 2x para "
"caixas de texto de consulta SQL e 1,25x para janela de consulta."
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Colunas da caixa de texto"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7730,32 +7736,32 @@ msgstr ""
"enfatizado 2x para as caixas de texto de consulta SQL e 1,25x para a janela "
"de consulta."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Linhas da caixa de texto"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
"Título da janela do navegador quando um banco de dados está selecionado."
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Título da janela do navegador quando nada está selecionado."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Título padrão"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "Título da janela do navegador quando um servidor está selecionado."
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "Título da janela do navegador quando uma tabela está selecionada."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7767,29 +7773,29 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) vindo do proxy 1.2.3.4:[br]"
"[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Lista de proxies confiáveis para regras allow/deny de IP"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
"Diretório no servidor onde você pode fazer upload de arquivos para "
"importação."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Diretório de upload"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Permitir pesquisa no banco de dados inteiro."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Usar a pesquisa de banco de dados"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7797,27 +7803,27 @@ msgstr ""
"Quando desabilitado, usuários não podem selecionar nenhuma das opções "
"abaixo, independentemente da checkbox a direita.."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Habilitar aba Desenvolvedor nas configurações"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Verificar a última versão"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
"Habilitar checagem pela última versão na página principal do phpMyAdmin."
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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ção de versão"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7829,11 +7835,11 @@ msgstr ""
"servidor onde o phpMyAdmin está instalado não tiver acesso direto à "
"internet. O formato é: \"hostname:portnumber\"."
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "URL de Proxy"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7843,19 +7849,19 @@ msgstr ""
"efetuada. Se for fornecido um usuário, será efetuada uma Autenticação "
"Básica. Nenhum outro tipo de autenticação é suportado atualmente."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Usuário de Proxy"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "A senha para autenticar no proxy."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Senha de Proxy"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7863,47 +7869,47 @@ msgstr ""
"Habilitar compressão [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/"
"a] para operações de importação e exportação."
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Digite a chave pública do seu domínio no serviço reCaptcha."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Chave pública para o reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Digite a sua chave privada para o seu domínio no serviço reCaptcha."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Chave privada do reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "Escolha a ação padrão ao enviar relatórios de erro."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Enviar relatório de erros"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "Consultas executadas"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7911,7 +7917,7 @@ msgstr ""
"Ative o Modo de Configuração Zero, que possibilitará que você configure as "
"tabelas de armazenamento do phpMyAdmin automaticamente."
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Ativar Modo de Configuração Zero"
@@ -7938,44 +7944,44 @@ msgstr "Autenticação por HTTP"
msgid "Signon authentication"
msgstr "Autenticação Signon"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV usando LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Planilha Open-Document"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Rápido"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Personalizado"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Opções de exportação do banco de dados"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV para dados MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Texto Open-Document"
@@ -13772,15 +13778,31 @@ msgstr "Usando marcador \"%s\" como query padrão de navegação."
msgid "Showing as PHP code"
msgstr "Exibindo como código PHP"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"A seleção atual não contém uma única coluna. As funções edição em grade, "
"checkbox, editar, copiar e apagar não estão disponíveis."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"A seleção atual não contém uma única coluna. As funções edição em grade, "
+"checkbox, editar, copiar e apagar não estão disponíveis."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas com os índices da tabela `%s`"
@@ -15048,6 +15070,10 @@ msgstr "Cometário:"
msgid "Drag to reorder"
msgstr "Arraste para reordenar"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Linha inicial:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Selecionar colunas (no mínimo 1):"
diff --git a/po/ro.po b/po/ro.po
index 51d9240734..5bc2ac9b16 100644
--- a/po/ro.po
+++ b/po/ro.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-05-29 12:40+0200\n"
"Last-Translator: Costel Cocerhan \n"
"Language-Team: Romanian %s:"
msgstr "Comandă SQL pe baza de date %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Trimite comanda"
@@ -3482,7 +3483,7 @@ msgstr "Actualizare semn de carte"
msgid "Delete bookmark"
msgstr "Ștergeți semnul de carte"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3490,21 +3491,21 @@ msgstr ""
"Server-ul nu răspunde (sau soclul serverului MySQL local nu este configurat "
"corect)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Serverul nu răspunde."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
"Vă rugăm să verificați drepturile de acces ale directorului ce conține baza "
"de date."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Detalii…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3547,9 +3548,9 @@ msgstr[1] "%s rezultat(e) în interiorul tabelului %s"
msgstr[2] "%s rezultat(e) în interiorul tabelului %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3603,28 +3604,28 @@ msgstr "Filtrare înregistrări"
msgid "Search this table"
msgstr "Caută în tabelă"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Început"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Anterior"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Următoarea"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Sfârșit"
@@ -3633,8 +3634,9 @@ msgstr "Sfârșit"
msgid "All"
msgstr "Toate"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Număr de rânduri:"
@@ -3731,16 +3733,16 @@ msgid "Query took %01.4f seconds."
msgstr "Interogarea a durat %01.4f secunde."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Cele bifate:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3748,7 +3750,7 @@ msgstr "Cele bifate:"
msgid "Check All"
msgstr "Marchează toate"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Vizualizare imprimare"
@@ -3844,11 +3846,11 @@ msgstr "Informațiile despe Git lipsesc!"
msgid "Open new phpMyAdmin window"
msgstr "Deschide fereastră phpMyAdmin nouă"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Faceţi click pe bară pentru a defila la partea de sus a paginii"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Trebuie să aveți activat Javascript!"
@@ -3912,8 +3914,8 @@ msgstr "Cheia primară a fost aruncată."
msgid "Index %s has been dropped."
msgstr "Indexul %s a fost aruncat."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3929,7 +3931,7 @@ msgid ""
msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -3941,16 +3943,16 @@ msgid "View"
msgstr "Vizualizare"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3962,10 +3964,10 @@ msgid "Structure"
msgstr "Structură"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3973,19 +3975,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Caută"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3994,7 +3996,7 @@ msgid "Insert"
msgstr "Inserare"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4003,21 +4005,21 @@ msgid "Privileges"
msgstr "Drepturi de acces"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operații"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Urmărire"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4034,16 +4036,16 @@ msgstr "Declanșatori"
msgid "Database seems to be empty!"
msgstr "Baza de date pare a fi goală!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Interogare prin exemplu"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rutine"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4051,16 +4053,16 @@ msgstr "Rutine"
msgid "Events"
msgstr "Evenimente"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Designer"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Coloane centrale"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4068,38 +4070,38 @@ msgstr "Coloane centrale"
msgid "Databases"
msgstr "Baze de date"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Utilizatori"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Jurnal binar"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replicare"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variabile"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Seturi de caractere"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Extensii"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Motoare"
@@ -4127,7 +4129,7 @@ msgstr[0] "%1$d rânduri inserate."
msgstr[1] "%1$d rând inserat."
msgstr[2] "%1$d rânduri inserate."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4783,12 +4785,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Mărime maximă: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4799,28 +4801,28 @@ msgstr "Mărime maximă: %s%s"
msgid "MySQL said: "
msgstr "MySQL zice: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Explică SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Sari peste explicarea SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "fără cod PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Creează cod PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
@@ -4828,93 +4830,87 @@ msgid "Edit inline"
msgstr "Modifică index"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dum"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y la %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s zile, %s ore, %s minute și %s secunde"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Parametru lipsă:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Sari la baza de date \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Faceţi click pentru a comuta"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Caută în calculatorul tău:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Selectați de pe serverul web un director %s: pentru încărcări:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Directorul stabilit pentru încărcare nu poate fi găsit."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Nu sunt fișiere pentru încărcare!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Golește"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Execută"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Listare"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Creare"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Ultima actualizare"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Ultima verficare"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "Dum"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Căutare:"
@@ -4937,13 +4933,13 @@ msgstr "Folosește această valoare"
msgid "Rows"
msgstr "Rânduri"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Date"
@@ -5372,7 +5368,7 @@ msgid "Set value: %s"
msgstr "Seteaza valoarea: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Restaurează valoarea implicită"
@@ -6114,10 +6110,10 @@ msgstr "Personalizează modul de navigare."
msgid "Customize default options."
msgstr "Particularizați opțiunile implicite."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6661,7 +6657,7 @@ msgid "Maximum displayed SQL length"
msgstr "Lungimea maximă de afișare SQL"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Utilizatorii nu pot seta o valoare mai mare"
@@ -6915,7 +6911,15 @@ msgstr "Acestea sunt link-urile de Editare, Copiere și Ștergere"
msgid "Where to show the table row links"
msgstr "Unde să fie afișate link-urile din rândurile tabelelor"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
#, fuzzy
#| msgid "Use natural order for sorting table and database names"
msgid "Use natural order for sorting table and database names."
@@ -6923,35 +6927,35 @@ msgstr ""
"Folosește ordinea naturală pentru sortarea numelor tabelelor și bazelor de "
"date"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Ordine naturală"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:531
#, fuzzy
#| msgid "Use only icons, only text or both"
msgid "Use only icons, only text or both."
msgstr "Folosește doar iconițe. doar text sau ambele"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
msgid "Table navigation bar"
msgstr "bară de navigare cu iconițe"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
#, fuzzy
#| msgid "use GZip output buffering for increased speed in HTTP transfers"
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"folosește GZip output buffering pentru viteză mărită în transferurile HTTP"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
#, fuzzy
msgid "GZip output buffering"
msgstr "GZip output buffering"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid ""
#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
@@ -6963,21 +6967,21 @@ msgstr ""
"[kbd]SMART[/kbd] - adică ordine descrescătoare pentru coloane de tipul TIME, "
"DATE, DATETIME și TIMESTAMP, sau crescătoare altfel"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Ordine de sortare implicită"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Use persistent connections to MySQL databases."
msgstr "Folosește conexiuni persistente la baze de date MySQL"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Conexiuni persistente"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
#, fuzzy
msgid ""
"Disable the default warning that is displayed on the database details "
@@ -6988,11 +6992,11 @@ msgstr ""
"structură ale bazei de date, dacă oricare dintre tabelele necesare pentru "
"stocarea configurării phpMyAdmin nu a putut fi găsită"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Tabele de stocare a configurării phpMyAdmin absente"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7004,11 +7008,11 @@ msgstr ""
"Dezactivează avertismentul implicit care este afișat dacă mcrypt lipsește "
"pentru autentificarea prin cookie-uri"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
#, fuzzy
msgid ""
"Disable the default warning that is displayed on the Structure page if "
@@ -7018,31 +7022,31 @@ msgstr ""
"structură ale bazei de date, dacă oricare dintre tabelele necesare pentru "
"stocarea configurării phpMyAdmin nu a putut fi găsită"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
#, fuzzy
#| msgid "Allow to display all the rows"
msgid "How to display the menu tabs"
msgstr "Permite afișarea tuturor rândurilor"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
#, fuzzy
#| msgid "Disallow BLOB and BINARY columns from editing"
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Nu permite editarea coloanelor BLOB și BINARY"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Protejează coloanele binare"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7053,21 +7057,21 @@ msgstr ""
"folosesc funcții JS pentru afișarea istoriei interogprilor ( pierdute la "
"închiderea ferestrei )."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Istoric interogări permanent"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "Câte interogări sunt ținute în istorie"
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Lungimea istoriei de interogări"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
#, fuzzy
#| msgid "Select which functions will be used for character set conversion"
msgid "Select which functions will be used for character set conversion."
@@ -7075,11 +7079,11 @@ msgstr ""
"Selectați care funcții vor fi folosite pentru conversia seturilor de "
"caractere"
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Motor de înregistrare"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, fuzzy
#| msgid "When browsing tables, the sorting of each table is remembered"
msgid "When browsing tables, the sorting of each table is remembered."
@@ -7087,21 +7091,21 @@ msgstr ""
"Când se vizualizează tabele, ordinea de sortare a fiecărui tabel este "
"reținută"
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Reține sortarea tabelei"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Ordine de sortare implicită"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
#, fuzzy
#| msgid ""
#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@@ -7111,97 +7115,97 @@ msgstr ""
"Repetă header-ul la fiecare X celule, [kbd]0[/kbd] dezactivează această "
"opțiune"
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Repetă header-ul"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Afișarea câmpului relațional"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "Opțiuni de afișare a serverelor."
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
#, fuzzy
#| msgid "Save all edited cells at once"
msgid "Grid editing: save all edited cells at once"
msgstr "Salvează toate câmpurile editate simultan"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
#, fuzzy
#| msgid "Directory where exports can be saved on server"
msgid "Directory where exports can be saved on server."
msgstr "Directoarele unde export-urile pot fi salvate pe server"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Directorul de salvări"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "Lăsați gol dacă nu este folosit"
# Ordinea de autorizare a gazdelor
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Ordinea de autorizare a host-urilor"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "Lăsați gol pentru valorile implicite"
# Reguli de autorizare a gazdelor
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Reguli de autorizare a host-urilor"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Permite logările fără parolă"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Permite autentificarea ca „root”"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Valoare sesiune"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
#, 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 ""
"Numele HTTP Basic Auth Realm ce va fi afișat când se face autentificarea HTTP"
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
#, fuzzy
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid ""
#| "The path for the config file for [a@http://swekey.com]SweKey hardware "
@@ -7216,21 +7220,21 @@ msgstr ""
"com]autentificarea hardware SweKey [/a] (ce nu se află în rădăcină; "
"sugestie: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "Fișierul de configurare SweKey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "Metoda de autentificare de utilizat"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Tipul autentificării"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
@@ -7242,11 +7246,11 @@ msgstr ""
"Lăsați necompletat dacă nu doriți suport pentru [a@http://wiki.phpmyadmin."
"net/pma/bookmark]bookmark-uri[/a], sugestie: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Tabelul de bookmark-uri"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
@@ -7258,21 +7262,21 @@ msgstr ""
"Lăsați necompletat dacă nu doriți comentarii pentru coloane/mime types, "
"sugestie: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Tabelul cu informații despre coloane"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Comprimă conexiunea la serverul MySQL"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Comprimă conexiunea"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
#, 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."
@@ -7280,16 +7284,16 @@ msgstr ""
"Cum se realizează conexiunea la server, lăsați [kbd]tcp[/kbd] dacă nu "
"sunteți sigur"
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Tipul conexiunii"
# Parola pentru utilizatorul de control
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Parola pentru control user"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7303,13 +7307,13 @@ msgstr ""
"informații găsiți pe [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
# Utilizator de control
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
#, fuzzy
msgid "Control user"
msgstr "Control user"
# O altă gazdă care să deţină stocarea configurației; lăsați necompletat pentru a utiliza gazda deja definită
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7322,12 +7326,12 @@ msgstr ""
"a utiliza host-ul deja definit"
# Gazdă de control
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Gazdă de control"
# O altă gazdă care să deţină stocarea configurației; lăsați necompletat pentru a utiliza gazda deja definită
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7341,19 +7345,19 @@ msgstr ""
"a utiliza host-ul deja definit"
# Gazdă de control
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Control host"
msgid "Control port"
msgstr "Gazdă de control"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
#, fuzzy
#| msgid "Hide databases matching regular expression (PCRE)"
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Ascunde bazele de date care respectă expresia regulată (PCRE)"
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7362,15 +7366,15 @@ msgstr ""
"bugs/2606/]PMA bug tracker[/a] și pe [a@http://bugs.mysql.com/19588]MySQL "
"Bugs[/a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Dezactivează folosirea INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Ascunde baze de date"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7382,26 +7386,26 @@ msgstr ""
"Lăsați necompletat dacă nu doriți suport pentru istoricul interogărilor, "
"sugestie: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Tabelă istoric interogări SQL"
# Numele gazdei pe care rulează serverul MySQL
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
msgstr "Numele host-ului pe care rulează serverul MySQL"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Numele de gazdă al serverului"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL-ul pentru delogare"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
#, fuzzy
#| msgid ""
#| "Limits number of table preferences which are stored in database, the "
@@ -7413,15 +7417,15 @@ msgstr ""
"Limitează numărul de preferințe ale tabelelor ce sunt stocate în baza de "
"date, cele mai vechi fiind automat înlăturate"
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Numărul maxim de preferințe ale tabelelor de stocat"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
@@ -7430,13 +7434,13 @@ msgstr ""
"Lăsați necompletat dacă nu doriți suport PDF schema, sugesti: "
"[kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Central columns"
msgid "Central columns table"
msgstr "Coloane centrale"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
msgid ""
"Leave blank for no central columns support, suggested: "
@@ -7445,17 +7449,17 @@ msgstr ""
"Lăsați necompletat dacă nu doriți suport PDF schema, sugestie: "
"[kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "Încearcă conectarea fără parolă"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Conectează fără parolă"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
#, fuzzy
#| msgid ""
#| "You can use MySQL wildcard characters (% and _), escape them if you want "
@@ -7474,21 +7478,21 @@ msgstr ""
"de date, doar introduceți numele lor în ordine și folosiți [kbd]*[/kbd] la "
"sfârșit pentru a afișa restul în ordine alfabetică."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Afișează doar bazele de date listate"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr "Lăsați gol dacă nu utilizați „config auth”"
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Parola pentru „config auth”"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
#, fuzzy
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
@@ -7496,12 +7500,12 @@ msgstr ""
"Lăsați necompletat dacă nu doriți suport PDF schema, sugesti: "
"[kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
#, fuzzy
msgid "PDF schema: pages table"
msgstr "PDF schema: tabela de pagini"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
@@ -7517,24 +7521,24 @@ msgstr ""
"complete. Lăsați necompletat dacă nu doriți suport. Sugestie: "
"[kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "nume bază de date"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
#, 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 "Portul la care ascultă serverul MySQL, lăsați gol pentru implicit"
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Portul serverului"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7546,11 +7550,11 @@ msgstr ""
"Lăsați necompletat dacă nu doriți tabele - în mod \"persistent\" - recent "
"folosite peste sesiuni, sugestie: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Tabel folosit recent"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7562,13 +7566,13 @@ msgstr ""
"Lăsați necompletat dacă nu doriți tabele - în mod \"persistent\" - recent "
"folosite peste sesiuni, sugestie: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "Tabele favorite"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -7580,12 +7584,12 @@ msgstr ""
"Lăsați necompletat dacă nu doriți suport [a@http://wiki.phpmyadmin.net/pma/"
"relation]relation-links[/a], sugestie: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
#, fuzzy
msgid "Relation table"
msgstr "Tabel relațional"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -7597,35 +7601,35 @@ msgstr ""
"Vezi [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] pentru un exemplu"
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
#, fuzzy
msgid "Signon session name"
msgstr "Numele sesiunii signon"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
#, fuzzy
msgid "Signon URL"
msgstr "ULR-ul signon"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
#, fuzzy
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr "Portul la care ascultă serverul MySQL, lăsați gol pentru implicit"
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Soclul serverului"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, fuzzy
msgid "Enable SSL for connection to MySQL server."
msgstr "Comprimă conexiunea la serverul MySQL"
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Utilizează SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
#, fuzzy
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7634,13 +7638,13 @@ msgstr ""
"Lăsați necompletat dacă nu doriți suport PDF schema, sugestie: "
"[kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "PDF schema: coordonatele tabelului"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
#, fuzzy
#| msgid ""
#| "Table to describe the display columns, leave blank for no support; "
@@ -7652,13 +7656,13 @@ msgstr ""
"Tabelul care descrie coloanele de afișare, lăsați necompletat dacă nu doriți "
"suport; sugestie: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Afișează tabelul de coloane"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" tables'UI preferences across sessions, "
@@ -7671,11 +7675,11 @@ msgstr ""
"Interfeței cu Utilizatorul ale tabelului peste sesiuni, sugestie: "
"[kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Preferințele Interfeței cu Utilizatorul ale tabelului"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7683,11 +7687,11 @@ msgstr ""
"Dacă o declarație DROP DATABASE IF EXISTS va fi adăugată ca prima linie la "
"jurnal când se creează o bază de date."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Adaugă DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7695,11 +7699,11 @@ msgstr ""
"Dacă o declarație DROP DATABASE IF EXISTS va fi adăugată ca prima linie la "
"jurnal când se creează un tabel."
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Adaugă DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7707,21 +7711,21 @@ msgstr ""
"Dacă o declarație DROP VIEW IF EXISTS va fi adăugată ca prima linie la "
"jurnal când se creează un view."
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Adaugă DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Definește lista de declarații pe care auto-crearea le folosește la "
"versiunile noi."
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Declarații de urmărit"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
@@ -7734,11 +7738,11 @@ msgstr ""
"sugestie: [kbd]pma_tracking[/kbd]"
# Tabelul de urmărire interogări SQL
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Tabelul de tracking interogări SQL"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7746,13 +7750,13 @@ msgstr ""
"Dacă mecanismul de urmărire creează versiuni pentru tabele și vizualizări în "
"mod automat."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Regim de recuperare automată"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7764,37 +7768,37 @@ msgstr ""
"Lăsați necompletat dacă nu doriți stocarea preferințelor utilizatorilor în "
"baza de date, sugestie: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Tabelul de stocare a preferințelor utilizatorului"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Utilizare tabele"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Utilizare tabel gazde"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7806,15 +7810,15 @@ msgstr ""
"Lăsați necompletat dacă nu doriți stocarea preferințelor utilizatorilor în "
"baza de date, sugestie: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Utilizator pentru „config auth”"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7823,22 +7827,22 @@ msgstr ""
"afișa numele de gazdă în loc."
# Numele "pe larg" al acestui server
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Numele \"verbose\" al acestui server"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
#, 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 ""
"Dacă unui utilizator să i se afișeze un buton \"arata-le pe toate(randurile\""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Permite afișarea tuturor rândurilor"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
#, fuzzy
#| msgid ""
#| "Please note that enabling this has no effect with [kbd]config[/kbd] "
@@ -7855,54 +7859,54 @@ msgstr ""
"de configurare; nu se limitează capacitatea de a executa aceeași comandă "
"direct"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Arată formularul de schimbare a parolei"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Arată formularul de creare bază de date"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Comentarii tabel"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Arată informația PHP"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Afișează stare sclav"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
#, fuzzy
#| msgid ""
#| "Defines whether or not type fields should be initially displayed in edit/"
@@ -7914,33 +7918,33 @@ msgstr ""
"Stabilește dacă să se afișeze inițial sau nu câmpurile de tip, în modul de "
"editare/inserare"
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Afișează tipurile câmpurilor"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
#, fuzzy
#| msgid "Display the function fields in edit/insert mode"
msgid "Display the function fields in edit/insert mode."
msgstr "Afișează câmpurile de funcții în modul de editare/inserare"
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Afișează câmpurile de funcții"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
#, fuzzy
#| msgid "Whether to show hint or not"
msgid "Whether to show hint or not."
msgstr "Dacă să se afișeze indiciul sau nu"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Arată indiciul"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -7952,15 +7956,15 @@ msgstr ""
"Afișează link-ul către output-ul [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Afișează link-ul phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Afișează informații detaliate despre serverul MySQL"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -7970,11 +7974,11 @@ msgstr ""
"Definește dacă interogările SQL generate de phpMyAdmin ar trebui să fie "
"afișate"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Afișează interogările SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
#, fuzzy
#| msgid ""
#| "Defines whether the query box should stay on-screen after its submission"
@@ -7983,11 +7987,11 @@ msgid ""
msgstr ""
"Definește dacă după submit, casuța de interogare ar trebui să rămână pe ecran"
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Reține căsuța de interogare"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
#, fuzzy
#| msgid "Allow to display database and table statistics (eg. space usage)"
msgid "Allow to display database and table statistics (eg. space usage)."
@@ -7995,11 +7999,11 @@ msgstr ""
"Permite afișarea statisticilor pentru baze de date și tabeluri (utilizarea "
"spațiului de exemplu)"
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Afișează statistici"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
#, fuzzy
#| msgid ""
#| "Mark used tables and make it possible to show databases with locked tables"
@@ -8009,11 +8013,11 @@ msgstr ""
"Marchează tabelele folosite și fă posibilă afișarea bazelor de date cu "
"tabele zăvorâte"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Sari peste tabelele zăvorâte"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
@@ -8021,12 +8025,12 @@ msgid ""
msgstr ""
"Un avertisment este afișat pe prima pagina dacă Suhosin este descoperit"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
#, fuzzy
msgid "Suhosin warning"
msgstr "Avertizare Suhosin"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
msgid ""
"Disable the default warning that is displayed on the main page if the value "
@@ -8037,13 +8041,13 @@ msgstr ""
"structură ale bazei de date, dacă oricare dintre tabelele necesare pentru "
"stocarea configurării phpMyAdmin nu a putut fi găsită"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Validitatea cookie-ului de login"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -8056,11 +8060,11 @@ msgstr ""
"fi marită pentru textarea-urile de interogări SQL (*2) și pentru ferestrele "
"de interogări (*1.25)"
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Coloane textarea"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -8073,39 +8077,39 @@ msgstr ""
"fi marită pentru textarea-urile de interogări SQL (*2) și pentru ferestrele "
"de interogări (*1.25)"
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Rânduri textarea"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
#, fuzzy
#| msgid "Title of browser window when a database is selected"
msgid "Title of browser window when a database is selected."
msgstr "Titlul ferestrei browser-ului când este selectată o bază de date"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
#, fuzzy
#| msgid "Title of browser window when nothing is selected"
msgid "Title of browser window when nothing is selected."
msgstr "TItlul ferestrei browser-ului când nu este selectat nimic"
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Titlu implicit"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
#, fuzzy
#| msgid "Title of browser window when a server is selected"
msgid "Title of browser window when a server is selected."
msgstr "Titlul ferestrei browser-ului când este selectat un server"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
#, fuzzy
#| msgid "Title of browser window when a table is selected"
msgid "Title of browser window when a table is selected."
msgstr "Titlul ferestrei browser-ului când este selectat un tabel"
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
#, fuzzy
#| msgid ""
#| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following "
@@ -8123,32 +8127,32 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) provenind de la proxy 1.2.3.4: [br]"
"[kbd] 1.2.3.4: HTTP_X_FORWARDED_FOR [/kbd]"
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Lista proxy-urilor de încredere pentru IP allow/deny"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
#, fuzzy
#| msgid "Directory on server where you can upload files for import"
msgid "Directory on server where you can upload files for import."
msgstr "Directorul de pe server unde puteți uploada fișiere pentru importare"
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
#, fuzzy
msgid "Upload directory"
msgstr "Directorul de bază pentru date"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
#, fuzzy
#| msgid "Allow for searching inside the entire database"
msgid "Allow for searching inside the entire database."
msgstr "Permiteți căutarea în întreaga bază de date"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Folosiți căutarea în baza de date"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid ""
#| "When disabled, users cannot set any of the options below, regardless of "
@@ -8160,29 +8164,29 @@ msgstr ""
"Când este dezactivat, userii nu pot seta niciuna din opțiunile de mai jos, "
"indiferent de checkbox-ul din dreapta"
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Activați tab-ul Developer în setări"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Verificați pentru ultima versiune"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
#, fuzzy
#| msgid "Enables check for latest version on main phpMyAdmin page"
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
"Activați verificarea pentru ultima versiune pe pagina principală phpMyAdmin"
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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 "Verificarea versiunii"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8190,33 +8194,33 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
msgid "Proxy username"
msgstr "Nume utilizator:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Parola"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8228,56 +8232,56 @@ msgstr ""
"Activați compresia în format [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] pentru operațiile de import și export"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
#, fuzzy
#| msgid "Ask before sending error reports"
msgid "Choose the default action when sending error reports."
msgstr "Întreabă înainte de a trimite rapoarte de eroare"
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "Portul serverului"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
msgid "Enter executes queries in console"
msgstr "Comanda SQL"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8305,48 +8309,48 @@ msgstr "Autentificare HTTP"
msgid "Signon authentication"
msgstr "Autentificare Signon"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV folosind LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Foaie de calcul Open Document"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Rapid"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Culoare personalizată"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Opțiuni de exportare a bazei de date"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "Date CSV pentru MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -14373,20 +14377,33 @@ msgstr "Se folosește semnul de carte „%s” ca interogare de răsfoire implic
msgid "Showing as PHP code"
msgstr "Afișare ca cod PHP"
-#: libraries/sql.lib.php:1765
-#, fuzzy
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
#| 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Acest tabel nu coține o coloană unică. Funcțiile legate de editare grid, "
"checkbox, sau link-urile de Editare, Copiere si Ștergere pot să nu "
"funcționeze după salvare."
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Acest tabel nu coține o coloană unică. Funcțiile legate de editare grid, "
+"checkbox, sau link-urile de Editare, Copiere si Ștergere pot să nu "
+"funcționeze după salvare."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probleme cu indexul tabelului „%s”"
@@ -15773,6 +15790,12 @@ msgstr "Comentariu:"
msgid "Drag to reorder"
msgstr "Drag and drop pentru reordonare"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "Dum"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Selectaţi coloanele (cel puţin una):"
diff --git a/po/ru.po b/po/ru.po
index df87401e63..3f599b52c5 100644
--- a/po/ru.po
+++ b/po/ru.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-05-31 02:17+0200\n"
"Last-Translator: Хомутов Иван Сергеевич \n"
"Language-Team: Russian %s:"
msgstr "SQL-запрос к базе данных %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Выполнить запрос"
@@ -3439,26 +3440,26 @@ msgstr "Обновить закладку"
msgid "Delete bookmark"
msgstr "Удалить закладку"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"Сервер не отвечает (либо локальный сокет сервера MySQL неверно настроен)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Сервер не отвечает."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Пожалуйста, проверьте привилегии каталога содержащего базу данных."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Детали…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Ошибка при указании соединения для controluser в конфигурации."
@@ -3500,9 +3501,9 @@ msgstr[1] "%1$s соответствия в таблице %2$s
msgstr[2] "%1$s соответствий в таблице %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3556,28 +3557,28 @@ msgstr "Фильтровать строки"
msgid "Search this table"
msgstr "Поиск в таблице"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Начало"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Предыдущая"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Следующая"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Конец"
@@ -3586,8 +3587,9 @@ msgstr "Конец"
msgid "All"
msgstr "Все"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Количество строк:"
@@ -3685,16 +3687,16 @@ msgid "Query took %01.4f seconds."
msgstr "Запрос занял %01.4f сек."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "С отмеченными:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3702,7 +3704,7 @@ msgstr "С отмеченными:"
msgid "Check All"
msgstr "Отметить все"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Версия для печати"
@@ -3803,11 +3805,11 @@ msgstr "Отсутствует Git информация!"
msgid "Open new phpMyAdmin window"
msgstr "Открыть phpMyAdmin в новом окне"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Кликните на строку, чтобы перейти вверх страницы"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Для полноценной работы необходимо включить JavaScript!"
@@ -3871,8 +3873,8 @@ msgstr "Первичный ключ был удален."
msgid "Index %s has been dropped."
msgstr "Индекс %s был удален."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3888,7 +3890,7 @@ msgid ""
msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Сервер"
@@ -3900,16 +3902,16 @@ msgid "View"
msgstr "Представление"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3921,10 +3923,10 @@ msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3932,19 +3934,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Поиск"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3953,7 +3955,7 @@ msgid "Insert"
msgstr "Вставить"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3962,21 +3964,21 @@ msgid "Privileges"
msgstr "Привилегии"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Операции"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Слежение"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3993,16 +3995,16 @@ msgstr "Триггеры"
msgid "Database seems to be empty!"
msgstr "Пустая база данных!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Запрос по шаблону"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Процедуры"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4010,16 +4012,16 @@ msgstr "Процедуры"
msgid "Events"
msgstr "События"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Дизайнер"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Центральные столбцы"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4027,38 +4029,38 @@ msgstr "Центральные столбцы"
msgid "Databases"
msgstr "Базы данных"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Пользователи"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Бинарный журнал"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Репликация"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Переменные"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Кодировки"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Расширения"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Типы таблиц"
@@ -4086,7 +4088,7 @@ msgstr[0] "Добавлена %1$d строка."
msgstr[1] "Добавлено %1$d строки."
msgstr[2] "Добавлено %1$d строк."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4762,12 +4764,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Перечисление, выбор из списка определенных значений"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Максимальный размер: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4778,118 +4780,114 @@ msgstr "Максимальный размер: %s%s"
msgid "MySQL said: "
msgstr "Ответ MySQL: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Анализ SQL запроса"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Убрать анализ SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Убрать PHP-код"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP-код"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Построчное редактирование"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Вс"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d %Y г., %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дней, %s часов, %s минут и %s секунд"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Отсутствующий параметр:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Перейти к базе данных \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Работа параметра \"%s\" подвержена ошибке, описание смотрите на %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Кликните для переключения"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Обзор вашего компьютера:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Выберите из каталога загрузки сервера %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Установленный каталог загрузки не доступен."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Файлы для загрузки отсутствуют!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Очистить"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Выполнить"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Печать"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Создание"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Последнее обновление"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Последняя проверка"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Начальная строка:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Поиск:"
@@ -4912,13 +4910,13 @@ msgstr "Использовать это значение"
msgid "Rows"
msgstr "Строки"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Данные"
@@ -5345,7 +5343,7 @@ msgid "Set value: %s"
msgstr "Установить значение: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Восстановить изначальное значение"
@@ -6105,10 +6103,10 @@ msgstr "Настройка режима просмотра данных."
msgid "Customize default options."
msgstr "Настроить опции по-умолчанию."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6587,7 +6585,7 @@ msgid "Maximum displayed SQL length"
msgstr "Максимальная длина отображаемого SQL"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Пользователи не смогут установить более высокое значение"
@@ -6809,34 +6807,42 @@ msgstr "Ссылки редактирования, копирования и у
msgid "Where to show the table row links"
msgstr "Где вывести ссылки строки таблицы"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr "Использовать естественный порядок сортировки имен таблиц и баз данных."
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Порядок сортировки"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Использовать только иконки, только текст, или всё вместе."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Строка навигации по таблице"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"Использовать буферизацию вывода GZip для увеличения скорости передачи данных "
"по HTTP."
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "Буферизация вывода GZip"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6844,19 +6850,19 @@ msgstr ""
"[kbd]SMART[/kbd] - означает обратный порядок сортировки для полей типа TIME, "
"DATE, DATETIME и TIMESTAMP; в ином случае порядок будет прямой."
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Порядок сортировки"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Использовать постоянные соединения с базами данных MySQL."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Постоянные соединения"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6865,11 +6871,11 @@ msgstr ""
"Отключить предупреждение, отображаемое на странице структуры базы данных при "
"отсутствии таблиц, необходимых для хранения конфигурации phpMyAdmin."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Отсутствие таблиц хранения конфигурации phpMyAdmin"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6877,11 +6883,11 @@ msgstr ""
"Отключить отображение предупреждения при различии версий библиотеки MySQL и "
"сервера."
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Предупреждение различия Сервера/библиотеки"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6889,27 +6895,27 @@ msgstr ""
"Отключить предупреждение, отображаемое на странице структуры при наличии "
"столбцов таблицы с именами, являющимися зарезервированными словами MySQL."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Предупреждение о зарезервированном слове MySQL"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Как отображать вкладки меню"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Как отображать ссылки на различные действия"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Запретить возможность редактирования столбцов типа BLOB и BINARY."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Защитить бинарные данные"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6919,126 +6925,126 @@ msgstr ""
"настройка расширений phpMyAdmin). При отключении, для истории запросов "
"используется JavaScript (история теряется при закрытии окна)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Постоянная история запросов"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Количество запросов, хранимых в истории."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Длина истории запросов"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr "Выберите функции, которые будут использоваться для перекодирования."
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Механизм перекодирования"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "При просмотре таблиц запоминается сортировка каждой таблицы."
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Запоминать сортировку таблиц"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr "Порядок сортировки по-умолчанию для таблиц с первичным ключом."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Порядок сортировки первичного ключа по-умолчанию"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Повторять заголовки через каждые X ячеек, [kbd]0[/kbd] отключает данную "
"функцию."
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Повтор заголовков"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Редактирование сетки: действие триггера"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Отображение связанного поля"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "Параметры отображения списка серверов."
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Редактирование сетки: сохранить все отредактированные ячейки сразу"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Каталог на сервере, в который можно сохранять файлы при экспорте."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Каталог сохранения"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Оставьте поле пустым, если не используете данную функцию."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Последовательность идентификации хоста"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Оставьте поле пустым для использования значения по-умолчанию."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Правила идентификации хоста"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Разрешать подключения без пароля"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Разрешить вход под root"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Значение сессии"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "Отображаемая строка при идентификации методом HTTP."
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "Область HTTP"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7047,19 +7053,19 @@ msgstr ""
"Путь к конфигурационному файлу для [a@http://swekey.com]SweKey hardware "
"authentication[/a]."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "Конфигурационный файл SweKey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Используемый метод идентификации."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Тип идентификации"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7068,11 +7074,11 @@ msgstr ""
"bookmark]закладок[/a] оставьте поле пустым, рекомендуется: "
"[kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Таблица закладок"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7080,31 +7086,31 @@ msgstr ""
"Для отключения поддержки комментариев/mime-типов полей оставьте поле пустым, "
"рекомендуется: [kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Таблица информации полей"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Сжимать данные при соединении с сервером MySQL."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Соединение со сжатием"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "Способ соединения с сервером. Если неуверены, оставьте [kbd]tcp[/kbd]."
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Тип соединения"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Пароль выделенного пользователя"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7112,11 +7118,11 @@ msgstr ""
"Специальный пользователь MySQL с ограниченными привилегиями. Подробнее: "
"[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Выделенный пользователь"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7124,11 +7130,11 @@ msgstr ""
"Альтернативный хост для хранения настроек конфигурации; для использования "
"уже определённого хоста оставьте поле пустым."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Контрольный хост"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7138,15 +7144,15 @@ msgstr ""
"уже определённого поста оставьте поле пустым, или уже заранее определённым, "
"если контрольный хост идентичен хосту."
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Контрольный порт"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Скрыть базы данных, подпадающие под регулярное выражение (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7154,15 +7160,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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Отключить использование INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Скрыть базы данных"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7170,23 +7176,23 @@ msgstr ""
"Для отключения поддержки истории SQL запросов оставьте поле пустым, "
"рекомендуется: [kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Таблица истории SQL запросов"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Хост, на котором работает сервер MySQL."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Хост сервера"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL выхода"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7194,15 +7200,15 @@ msgstr ""
"Ограничивает количество хранимых в базе данных свойств таблицы, устаревшие "
"записи автоматически удаляются."
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Максимальное количество хранимых свойств таблицы"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "таблица сохраненных запросов QBE"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7210,13 +7216,13 @@ msgstr ""
"Для отключения поддержки QBE оставьте поле пустым, рекомендуется: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Central columns"
msgid "Central columns table"
msgstr "Центральные столбцы"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7228,15 +7234,15 @@ msgstr ""
"Для отключения поддержки PDF схемы оставьте поле пустым, рекомендуется: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Пытаться установить соединение без пароля."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Соединять без пароля"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7246,30 +7252,30 @@ msgstr ""
"хотите использовать, как обычные литературные символы, т.е. используйте "
"[kbd]'my\\_db'[/kbd], а не [kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Показывать только базы данных из списка"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Если не используется config идентификация, оставьте поле пустым."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Прописанный пароль"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF схема: страницы таблицы"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7280,20 +7286,20 @@ msgstr ""
"pmadb]pmadb[/a]. Для отключения поддержки оставьте поле пустым. "
"Рекомендуется: [kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Имя базы данных"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr "Порт, на котором работает сервер MySQL. По-умолчанию оставьте пустым."
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Порт сервера"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7301,11 +7307,11 @@ msgstr ""
"Для отключения возможности просмотра недавно использованных таблиц оставьте "
"поле пустым, рекомендуется: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Недавно использованная таблица"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7317,13 +7323,13 @@ msgstr ""
"Для отключения возможности просмотра недавно использованных таблиц оставьте "
"поле пустым, рекомендуется: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "Избранные таблицы"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7331,11 +7337,11 @@ msgstr ""
"Для отключения поддержки [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] оставьте поле пустым, рекомендуется: [kbd]pma__relation[/kbd]."
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Таблица связей"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7343,31 +7349,31 @@ msgstr ""
"Для примера смотрите раздел [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]authentication types[/a]."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Имя сессии для Signon"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "URL для Signon"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr "Сокет, на котором работает сервер MySQL. По-умолчанию оставьте пустым."
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Сокет сервера"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Использовать SSL для соединения с сервером MySQL."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Использовать SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7375,11 +7381,11 @@ msgstr ""
"Для отключения поддержки PDF схемы оставьте поле пустым, рекомендуется: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Дизайнер и PDF схема: координаты таблиц"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7387,11 +7393,11 @@ msgstr ""
"Таблица для описания отображаемых полей, для отключения поддержки данной "
"функции оставьте поле пустым, рекомендуется: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Таблица с описаниями полей"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7399,11 +7405,11 @@ msgstr ""
"Для отключения возможности хранения настроек интерфейса таблиц через сессии "
"оставьте поле пустым, рекомендуется: [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Таблица хранения настроек интерфейса"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7411,11 +7417,11 @@ msgstr ""
"Будет ли при создании базы данных, в журнал первой строкой добавлено "
"выражение DROP DATABASE IF EXISTS."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Добавить DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7423,11 +7429,11 @@ msgstr ""
"Будет ли при создании таблицы, в журнал первой строкой добавлено выражение "
"DROP TABLE IF EXISTS."
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Добавить DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7435,21 +7441,21 @@ msgstr ""
"Будет ли при создании представления, в журнал первой строкой добавлено "
"выражение DROP VIEW IF EXISTS."
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Добавить DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Определить список выражений используемых для автоматического создания новых "
"версий."
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Слежение за выражениями"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7457,11 +7463,11 @@ msgstr ""
"Для отключения поддержки слежения за SQL запросами оставьте поле пустым, "
"рекомендуется: [kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Таблица слежения за SQL запросами"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7469,11 +7475,11 @@ msgstr ""
"Должен ли механизм слежения создавать версии таблиц и представлений "
"автоматически."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Автоматическое создание версий"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7481,11 +7487,11 @@ msgstr ""
"Для отключения возможности хранения пользовательских настроек в базе данных "
"оставьте поле пустым, рекомендуется: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Таблица хранения настроек пользователя"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7495,11 +7501,11 @@ msgstr ""
"возможности настраиваемых меню; если хотя бы одна из них пустая, то эта "
"возможность будет отключена, предложил: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Таблица пользователей"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7509,11 +7515,11 @@ msgstr ""
"настраиваемых меню; если хотя бы одна из них пустая, то эта возможность "
"будет отключена, предложил: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Таблица групп пользователей"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7521,15 +7527,15 @@ msgstr ""
"Для отключения функции скрытия/отображения элементов навигации оставьте поле "
"пустым, рекомендуется: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Таблица скрытых пунктов навигации"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Прописанный пользователь"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7537,19 +7543,19 @@ msgstr ""
"Пользовательское описание сервера. Оставьте поле пустым, чтобы вывести "
"название хоста."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Пользовательское имя сервера"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "Позволяет вывести пользователю кнопку \"показать все (записи)\"."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Разрешать вывод всех строк"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7559,57 +7565,57 @@ msgstr ""
"идентификации методом [kbd]config[/kbd] из-за жестко прописанного пароля. "
"Смена пароля в конфигурационном файле напрямую никак не ограничена."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Вывести форму изменения пароля"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Вывести форму создания базы данных"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, 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:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Комментарии к таблице"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr "Выводить/скрывать столбец, отображающий время создания всех таблиц."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Показать время создания"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Выводить/скрывать столбец, отображающий последнее время обновления всех "
"таблиц."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Показать последнее время обновления"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Выводить/скрывать столбец, отображающий последнее время проверки всех таблиц."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Показать последнее время проверки"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7617,82 +7623,82 @@ msgstr ""
"Определяет, должны ли введенные поля изначально отображаться в режиме "
"редактирования/вставки."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Отображение типа полей"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Выводить поля функций в режиме редактирования/вставки."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Выводить поля функций"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Показать/скрыть подсказки."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Показать подсказку"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
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:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Вывести ссылку на phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Вывести подробную информацию по MySQL серверу"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "Определяет выводить или нет SQL запросы, генерируемые phpMyAdmin."
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Показывать SQL запросы"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
"Определяет будет ли форма запроса оставаться на экране после его отправки."
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Оставить поле запроса"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Разрешить вывод статистики по базе данных и таблице (например, объем "
"занятого пространства)."
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Показывать статистику"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Отмечать использованные таблицы и делать возможным отображение баз данных с "
"заблокированными таблицами."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Пропускать заблокированные таблицы"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7700,11 +7706,11 @@ msgid ""
"detected."
msgstr "Выводить предупреждение на главной странице при определении Suhosin."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Предупреждение о Suhosin"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7717,13 +7723,13 @@ msgstr ""
"Отключить предупреждение, отображаемое на странице структуры при наличии "
"столбцов таблицы с именами, являющимися зарезервированными словами MySQL."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Срок действия cookie"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7736,11 +7742,11 @@ msgstr ""
"значение будет приоритетным для текстовых полей SQL запроса (*2) и для окна "
"запроса (*1.25)."
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Столбцов в текстовом поле"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7753,31 +7759,31 @@ msgstr ""
"значение будет приоритетным для текстовых полей SQL запроса (*2) и для окна "
"запроса (*1.25)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Строк в текстовом поле"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr "Заголовок окна браузера при выборе базы данных."
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Заголовок окна браузера по-умолчанию."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Заголовок по умолчанию"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "Заголовок окна браузера при выборе сервера."
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "Заголовок окна браузера при выборе таблицы."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7789,27 +7795,27 @@ msgstr ""
"For) заголовку, пришедшему с прокси 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Список доверенных прокси для IP allow/deny"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr "Каталог на сервере, в который вы можете загружать файлы для импорта."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Каталог загрузки"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Разрешить поиск по всей базе данных."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Использовать поиск по базе данных"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7817,28 +7823,28 @@ msgstr ""
"При отключении пользователи не смогут установить никакие из указанных ниже "
"параметров вне зависимости от галочки справа от них."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Включение вкладки разработчика в настройках"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Проверить обновление"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
"Включает возможность проверки последней версии phpMyAdmin на главной "
"странице."
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7850,11 +7856,11 @@ msgstr ""
"необходимо, если сервер, на котором установлен phpMyAdmin, не имеет прямого "
"доступа к Интернету. Формат: «hostname:portnumber»."
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Ссылка на прокси"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7865,19 +7871,19 @@ msgstr ""
"будет выполнена обычная проверка подлинности. В настоящее время другие типы "
"проверки подлинности не поддерживаются."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Имя пользователя прокси"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "Пароль для идентификации через прокси."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Пароль прокси"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7885,47 +7891,47 @@ msgstr ""
"Включить [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] сжатие "
"для операций импорта и экспорта."
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Введите ваш публичный ключ для сервиса reCaptcha вашего домена."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Публичный ключ для reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Введите ваш закрытый ключ для сервиса reCaptcha вашего домена."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Закрытый ключ для reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "Выберите действие по-умолчанию при отправке отчётов об ошибках."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Отправить отчёты об ошибках"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "Выполнено запросов"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7933,7 +7939,7 @@ msgstr ""
"Включить режим нулевой конфигурации, который позволяет настроить хранилище "
"конфигурации phpMyAdmin автоматически."
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Включить режим нулевой конфигурации"
@@ -7959,44 +7965,44 @@ msgstr "Авторизация с помощью HTTP"
msgid "Signon authentication"
msgstr "Авторизация с помощью Signon"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV, используя LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Электронная таблица OpenDocument"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Быстро"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Обычно"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Параметры экспорта базы данных"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV для MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Текст OpenDocument"
@@ -13820,15 +13826,31 @@ msgstr "Для обзора данных использован запрос и
msgid "Showing as PHP code"
msgstr "Отображает как PHP-код"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Данное выделение не содержит уникального столбца. Изменение сетки, "
"выставление галочки, редактирование, копирование и удаление невозможно."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Данное выделение не содержит уникального столбца. Изменение сетки, "
+"выставление галочки, редактирование, копирование и удаление невозможно."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблемы с индексами таблицы `%s`"
@@ -15129,6 +15151,10 @@ msgstr "Комментарий:"
msgid "Drag to reorder"
msgstr "Перетяните для изменения порядка сортировки"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Начальная строка:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Выберите поля (не менее одного):"
diff --git a/po/si.po b/po/si.po
index 34e278acc6..d8b0091978 100644
--- a/po/si.po
+++ b/po/si.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-11-11 12:16+0200\n"
"Last-Translator: Madhura Jayaratne \n"
"Language-Team: Sinhala %s:"
msgstr "%s දත්තගබඩාව මත SQL විමසුම:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "විමසුම ඉදිරිපත් කරන්න"
@@ -3580,25 +3581,25 @@ msgstr "පොත් සලකුණ පෙන්වන්න"
msgid "Delete bookmark"
msgstr "වගුව තුල සෙවීම"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr "සේවාදායකය ප්රතිචාර නොදක්වයි (හෝ සේවාදායකයේ සොකට් නිවැරදිව සකසා නැත)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "සේවාදායකය ප්රතිචාර නොදක්වයි."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "කරුණාකර දත්තගබඩාව අඩංගු ඩිරෙක්ටරිය සඳහා වරප්රසාද පරීක්ෂා කරන්න."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "තොරතුරු…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr "වින්යාසයන් හි අර්ථදක්වා ඇති පරිදි පරිපාලක භාවිතා කරන්නා ලෙස සම්බන්ධ වීම අසමත් විය."
@@ -3638,9 +3639,9 @@ msgstr[0] "%2$s තුල ගැලපීම් %1$s කි"
msgstr[1] "%2$s තුල ගැලපීම් %1$s කි"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3698,28 +3699,28 @@ msgstr "පෙරහන්"
msgid "Search this table"
msgstr "දත්තගබඩාවේ සොයන්න"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "ඇරඹුම"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "පෙර"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "මීලඟ"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "අවසන"
@@ -3728,8 +3729,9 @@ msgstr "අවසන"
msgid "All"
msgstr "සියලු"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "පේළි ගණන:"
@@ -3826,16 +3828,16 @@ msgid "Query took %01.4f seconds."
msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "තෝරාගත්:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3843,7 +3845,7 @@ msgstr "තෝරාගත්:"
msgid "Check All"
msgstr "සියල්ල කතිර කොටුගත කරන්න"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "මුද්රණ දර්ශනය"
@@ -3943,11 +3945,11 @@ msgstr "අනුවාදය පිළිබඳ තොරතුරු"
msgid "Open new phpMyAdmin window"
msgstr "නව phpMyAdmin කවුළුවක් විවෘත කරන්න"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "පිටුව මුලට යාමට මෙය මත ක්ලික් කරන්න"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "මෙම ස්ථානයයෙන් පසු JavaScript සක්රිය කර තිබීම අවශ්යය!"
@@ -4011,8 +4013,8 @@ msgstr "ප්රාථමික මූලය හලන ලදි"
msgid "Index %s has been dropped."
msgstr "%s සූචිය හලන ලදි"
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4028,7 +4030,7 @@ msgid ""
msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එකක් ඉවත් කල හැක."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "සේවාදායකය"
@@ -4040,16 +4042,16 @@ msgid "View"
msgstr "දසුන"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4061,10 +4063,10 @@ msgid "Structure"
msgstr "සැකිල්ල"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4072,19 +4074,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "සෙවීම"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4093,7 +4095,7 @@ msgid "Insert"
msgstr "ඇතුල් කරන්න"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4102,21 +4104,21 @@ msgid "Privileges"
msgstr "වරප්රසාද"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "මෙහෙයුම්"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "අවධානය"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4133,16 +4135,16 @@ msgstr "ප්රේරක"
msgid "Database seems to be empty!"
msgstr "දත්තගබඩාව හිස්ය!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "විමසුම"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "නෛත්යක"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4150,18 +4152,18 @@ msgstr "නෛත්යක"
msgid "Events"
msgstr "සිද්ධි"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "සැලසුම්කරණය"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns"
msgstr "පෙළ පෙදෙසේ පළල"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4169,38 +4171,38 @@ msgstr "පෙළ පෙදෙසේ පළල"
msgid "Databases"
msgstr "දත්තගබඩා"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "භාවිතා කරන්නන්"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "ද්වීමය ලොගය"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "අනුරූකරණය"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "විචල්යනයන්"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "අක්ෂර කට්ටලය"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "පේණු"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "යන්ත්රයන්"
@@ -4225,7 +4227,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "පේළි %1$d ක් ඇතුල් කෙරුනි."
msgstr[1] "පේළි %1$d ක් ඇතුල් කෙරුනි."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4907,12 +4909,12 @@ msgstr "විචල්ය දිගක් (0-65,535) සහිත, සැස
msgid "An enumeration, chosen from the list of defined values"
msgstr "අර්ථදක්වන ලද අගයන් අඩංගු ලැයිස්තුවකින් තෝරාගන්නා අගයකි"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "උපරිම: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4923,28 +4925,28 @@ msgstr "උපරිම: %s%s"
msgid "MySQL said: "
msgstr "MySQL පවසන ලදි: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "SQL ය පහදන්න"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "SQL ය පහදා දීමෙන් ඉවත් වන්න"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "PHP කේත නොමැතිව"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP කේත සාදන්න"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
@@ -4952,91 +4954,87 @@ msgid "Edit inline"
msgstr "සුචිය සංස්කරණය කරන්න"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "ඉරිදා"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y දින %I:%M %p ට"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "දින %s, පැය %s, මිනිත්තු %s සහ තප්පර %s"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "නොමැති පරාමිතිය:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "\"%s\" දත්තගබඩාව වෙත යන්න."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s විශේෂාංගයෙහි හඳුනාගත් දෝෂයක් ඇත, %s බලන්න"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "මාරු කිරීමට ක්ලික් කරන්න"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "පරිගණකය තුළ පිරික්සන්න:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක"
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "හිස් කරන්න"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "ක්රියාත්මක කරන්න"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "මුද්රණය කරන්න"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "සෑදීම"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "අවසන් යාවත්කාලීන කිරීම"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "අවසන් පරීක්ෂාව"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "ආරම්භක පේළිය:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "සෙවීම:"
@@ -5059,13 +5057,13 @@ msgstr "මෙම අගය භාවිතා කරන්න"
msgid "Rows"
msgstr "පේළි"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "දත්ත"
@@ -5494,7 +5492,7 @@ msgid "Set value: %s"
msgstr "%s අගය පිහිටුවන්න"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "පෙරනිමි අගය ප්රතිස්ථාපනය කරන්න"
@@ -6207,10 +6205,10 @@ msgstr "පිරික්සුම් ප්රකාරය රිසි ස
msgid "Customize default options."
msgstr "පෙරනිමි විකල්ප රිසි සේ සකසන්න."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6682,7 +6680,7 @@ msgid "Maximum displayed SQL length"
msgstr "දර්ෂිත SQL සඳහා උපරිම දිග"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "භාවිතා කරන්නන්ට වැඩි අගයක් සිටුවිය නොහැක"
@@ -6901,34 +6899,42 @@ msgstr "මේවා සංස්කරණය කරන්න, පිටපත
msgid "Where to show the table row links"
msgstr "වගුවේ පේළි වලට අදාල සබැඳි පෙන්විය යුත්තේ කොහේද යන වග"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr "වගු හා දත්තගබඩා වල නම් අනුපිළිවෙලට සැකසීම සඳහා ස්වභාවික අනුපිළිවෙල භාවිතා කරන්න."
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "ස්වභාවික අනුපිළිවල"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "භාවිතා කල යුත්තේ අයිකන පමණක්, පෙළ පමණක්, හෝ මේ දෙකම."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Iconic navigation bar"
msgid "Table navigation bar"
msgstr "අයිකන සහිත යාත්රණ පටිය"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "HTTP හුවමාරුවල වේගය වැඩි කිරීම සඳහා GZip ප්රතිදාන ගොඩගැසීම භාවිතා කරන්න."
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip ප්රතිදාන ගොඩගැසීම"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6936,19 +6942,19 @@ msgstr ""
"[kbd]SMART[/kbd] - එනම් TIME, DATE, DATETIME සහ TIMESTAMP තීර සඳහා අවරෝහණ "
"පිළිවෙලත්, අනෙකුත් තීර සඳහා ආරෝහණ පිළිවෙලත්."
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "පෙරනිමි අනුපිළිවෙල"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "MySQL දත්තගබඩා වෙත කල්පවතිනා සබඳතා භාවිතා කරන්න."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "කල්පවතිනා සබඳතා"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6957,22 +6963,22 @@ msgstr ""
"phpMyAdmin වින්යාස ගබඩාවට අවශ්ය එක් වගුවක් හෝ සොයාගත නොහැකි අවස්ථාවකදී දත්තගබඩා සැකිල්ල "
"පිටුවේ පෙන්වන පෙරනිමි අනතුරු ඇඟවීම අක්රීය කරන්න."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "phpMyAdmin වින්යාස ගබඩාවේ අඩු වගු"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -6985,82 +6991,82 @@ msgstr ""
"phpMyAdmin වින්යාස ගබඩාවට අවශ්ය එක් වගුවක් හෝ සොයාගත නොහැකි අවස්ථාවකදී දත්තගබඩා සැකිල්ල "
"පිටුවේ පෙන්වන පෙරනිමි අනතුරු ඇඟවීම අක්රීය කරන්න"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
#, fuzzy
#| msgid "Allow to display all the rows"
msgid "How to display the menu tabs"
msgstr "සියලුම පේළි දර්ශනය කිරීමට ඉඩ ලබාදෙයි"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
#, 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:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "ද්වීමය තීරු ආරක්ෂා කරන්න"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "ස්ථායී විමසුම් ඉතිහාසය"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "කොපමණ විමසුම් ප්රමාණයක් ඉතිහාසයේ රඳවා ගත යුතුද යන්න"
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "විමසුම් ඉතිහාසයේ ප්රමාණය"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
#, 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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "පටිගත කිරීමේ යන්ත්රය"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, 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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "වගුව සැකසූ අනුපිළිවෙල මතක තබාගන්න"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "පෙරනිමි අනුපිළිවෙල"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
#, fuzzy
#| msgid ""
#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@@ -7068,89 +7074,89 @@ msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr "පේළි x සංඛ්යාවකට වරක් ශීර්ෂ පුනරාවර්තනය කරන්න. අක්රීය කිරීමට [kbd]0[/kbd] යොදන්න"
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "ශීර්ෂක පුනරාවර්තනය"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "ජාලය තුල සංස්කරණය: සංස්කරණය ඇරඹිය යුත්තේ"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "සබැඳි දර්ශන තීරය"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "සේවාදායක පෙන්වුම් විකල්ප."
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "ජාලය තුල සංස්කරණය: සංස්කරණය කල කොටු සියල්ල එකවර සුරකින්න"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
#, 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:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "සුරැකුම් ඩිරෙක්ටරිය"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "භාවිතා නොකෙරේ නම් හිස්ව තබන්න"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "දායකයන් සඳහා අවසර ලබා දීමේ අනුපිළිවෙල"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "පෙරනිමි අගයන් සඳහා හිස්ව තබන්න"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "දායක සඳහා අවසර දීමේ රීති"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "මුරපදයක් රහිතව ඇතුල් වීමට ඉඩ ලබා දෙන්න"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "root ලෙස ඇතුල් වීමට ඉඩ දෙන්න"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "සැසි අගය"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid ""
#| "The path for the config file for [a@http://swekey.com]SweKey hardware "
@@ -7164,21 +7170,21 @@ msgstr ""
"[a@http://swekey.com]SweKey දෘඩාංග සත්යාපනය[/a] සඳහා අවශ්ය වින්යාස ගොනුව අඩංගු "
"ස්ථානය.(ඔබගේ ලියකියවිලි මූලයේ අඩංගු නැත. යෝජිත: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey වින්යාස ගොනුව"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "භාවිතා කල යුතු සත්යාපන ක්රමය"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "සත්යාපන වර්ගය"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7186,11 +7192,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/bookmark]පොත්සලකුණු[/a] විශේෂාංගය අනවශ්ය නම් හිස්ව "
"තබන්න. යෝජිත: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "පොත්සලකුණු ගොනුව"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
@@ -7202,35 +7208,35 @@ msgstr ""
"තීර විස්තර/mime වර්ග විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න. යෝජිත: [kbd]pma__column_info[/"
"kbd]"
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "තීර විස්තර ගොනුව"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "MySQL සේවාදායකය වෙත සම්බන්දතාව හකුළුවන්න"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "සම්බන්ධතාව හකුළුවන්න"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
#, 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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "සම්බන්ධතා වර්ගය"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "පරිපාලක භාවිතා කරන්නාගේ මුරපදය"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7243,11 +7249,11 @@ msgstr ""
"සීමිත අවසර සහිතව වින්යාස කරන ලද විශේෂ MySQL භාවිතා කරන්නෙක්, වැඩි විස්තර සඳහා [a@http://"
"wiki.phpmyadmin.net/pma/controluser]විකිය[/a] බලන්න"
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "පරිපාලක භාවිතා කරන්නා"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7259,11 +7265,11 @@ msgstr ""
"වින්යාස ගබඩාව තබා ගැනීම සඳහා විකල්ප දායකයෙක්; දැනට අර්ථ දක්වා ඇති දායකයා භාවිතා කිරීමට "
"හිස්ව තබන්න"
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "පාලක දායකයා"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7276,31 +7282,31 @@ msgstr ""
"වින්යාස ගබඩාව තබා ගැනීම සඳහා විකල්ප දායකයෙක්; දැනට අර්ථ දක්වා ඇති දායකයා භාවිතා කිරීමට "
"හිස්ව තබන්න"
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "පාලක පෝර්ටය"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
#, fuzzy
#| msgid "Hide databases matching regular expression (PCRE)"
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Regular expression (PCRE) හා ගැළපෙන දත්තගබඩා සඟවන්න"
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA භාවිතය අක්රීය කරන්න"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "දත්තගබඩා සඟවන්න"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7312,41 +7318,41 @@ msgstr ""
"SQL විමසුම් ඉතිහාසය රඳවා ගැනීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: "
"[kbd]pma__history[/kbd]"
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL විමසුම් ඉතිහාස වගුව"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
msgstr "MySQL සේවාදායකය ක්රියාත්මක දායකයේ දායක නාමය"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "සේවාදායකයේ දායක නාමය"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "පිටවිය යුතු URLය"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "ගබඩා කල යුතු උපරිම වගු අභිරුචි ගණන"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "අනුගාමි සේවාදායකයේ තත්ත්ව වගුව බලන්න"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7358,13 +7364,13 @@ msgstr ""
"ක්රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: "
"[kbd]pma__pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "පෙළ පෙදෙසේ පළල"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7376,38 +7382,38 @@ msgstr ""
"ක්රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: "
"[kbd]pma__table_coords[/kbd]"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "මුරපදය නොමැතිව සම්බන්ධ වීමට උත්සාහ කරන්න"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "මුරපදය නොමැතිව සම්බන්ධ වන්න"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "සඳහන් දත්තගබඩා පමණක් පෙන්වන්න"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr "config සත්යාපනය භාවිතා නොකරයි නම් හිස්ව තබන්න"
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "config සත්යාපනය සඳහා මුරපදය"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7418,11 +7424,11 @@ msgstr ""
"ක්රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: "
"[kbd]pma__pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF ක්රමනුරූපයේ පිටු පිලිබඳ විස්තර අඩංගු වගුව"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
@@ -7437,22 +7443,22 @@ msgstr ""
"සඳහා [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] බලන්න. විශේෂාංග අනවශ්ය "
"නම් හිස්ව තබන්න, යෝජිත: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "දත්තගබඩාවේ නම"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
#, 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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "සර්වරයේ පොර්ට්"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7464,11 +7470,11 @@ msgstr ""
"සැසි අතර \"කල් පවත්නා\" ලෙස මෑතදී භාවිතා කල වගු මතක තබාගැනීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව "
"තබන්න, යෝජිත: [kbd]pma__recent[/kbd]"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "මෑතදී භාවිතා වූ වගුව"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7480,13 +7486,13 @@ msgstr ""
"සැසි අතර \"කල් පවත්නා\" ලෙස මෑතදී භාවිතා කල වගු මතක තබාගැනීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව "
"තබන්න, යෝජිත: [kbd]pma__recent[/kbd]"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "විචල්යනයන්"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -7498,11 +7504,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]වගු අතර සම්බන්ධතා දැක්වෙන සබැඳි[/a] "
"විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__relation[/kbd]"
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "සබැඳුම් දත්ත ඇතුලත් වගුව"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -7514,35 +7520,35 @@ msgstr ""
"උදාහරණයක් ලෙස [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]සත්යාපන ක්රම[/"
"a] බලන්න"
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Signon සැසි නාමය"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "Signon URLය"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
#, 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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "සර්වරයේ සොකට්"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "SSL භාවිතා කරන්න"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7554,13 +7560,13 @@ msgstr ""
"ක්රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: "
"[kbd]pma__table_coords[/kbd]"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "PDF ක්රමානුරූපය: වගු ඛණ්ඩාංක"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
#, fuzzy
#| msgid ""
#| "Table to describe the display columns, leave blank for no support; "
@@ -7572,11 +7578,11 @@ msgstr ""
"දර්ෂිත තීර පිලිබඳ දත්ත අඩංගු වගුව. විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න; යෝජිත: "
"[kbd]pma__table_info[/kbd]"
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "පෙන්විය යුතු තීර පිළිබඳ දත්ත ඇතුලත් වගුව"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" tables' UI preferences across sessions, "
@@ -7588,11 +7594,11 @@ msgstr ""
"සැසි අතර \"කල් පවත්නා\" ලෙස වගු අතුරු මුහුණත සම්බන්ධ අභිරුචි තබාගැනීමේ විශේෂාංගය අනවශ්ය නම් "
"හිස්ව තබන්න, යෝජිත: [kbd]pma__table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "UI අභිරුචි පිළිබඳ දත්ත ඇතුලත් වගුව"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7600,41 +7606,41 @@ msgstr ""
"දත්තගබඩාවක් සෑදීමේදී ලොගයේ පළමු පේළිය ලෙස DROP DATABASE IF EXISTS ප්රකාශයක් එක් "
"කරන්නේද යන වග."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE එක් කරන්න"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "DROP TABLE එක් කරන්න"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "DROP VIEW එක් කරන්න"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr "නව අනුවාදයක් සඳහා ස්වයංක්රීය-සැදුම විසින් භාවිතා කලයුතු ප්රකාශන ලැයිස්තුව සඳහන් කරයි."
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "අවධානය සක්රීය කල යුතු ප්රකාශ"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
@@ -7645,21 +7651,21 @@ msgid ""
msgstr ""
"SQL විමසුම් අවධානය විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__tracking[/kbd]"
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL විමසුම් අවධානයට අදාළ වගුව"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr "අවධාන ක්රියාවලිය විසින් වගු සහ දසුන් සඳහා ස්වයන්ක්රීයව අනුවාද සාදන්නේ ද යන වග."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "ස්වයංක්රියව අනුවාද සාදන්න"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7671,37 +7677,37 @@ msgstr ""
"භාවිතා කරන්නාගේ අභිරුචි දත්තගබඩාවේ ගබඩා කිරීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න; යෝජිත: "
"[kbd]pma__userconfig[/kbd]"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "භාවිතා කරන්නාගේ අභිරුචි වගුව"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "වගු භාවිතා කරන්න"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "දායක වගුව භාවිතා කරන්න"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7713,74 +7719,74 @@ msgstr ""
"භාවිතා කරන්නාගේ අභිරුචි දත්තගබඩාවේ ගබඩා කිරීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න; යෝජිත: "
"[kbd]pma__userconfig[/kbd]"
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "config සත්යාපනය සඳහා භාවිතා කරන්නා"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr "සේවාදායකය සඳහා පරිශ්රීලක මිත්ර විස්තරයක්. එය වෙනුවට දායක නාමය පෙන්වීමට හිස්ව තබන්න."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
#, 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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "සියලුම පේළි දර්ශනය කිරීමට ඉඩ ලබාදෙයි"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "මුරපදය වෙනස් කිරීමේ පෝරමය පෙන්වන්න"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "දත්තගබඩාවක් සෑදීමේ පෝරමය පෙන්වන්න"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, 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:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "වගු විස්තර"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
#, 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:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "සෑදූ වේලාව පෙන්වන්න"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last update timestamp for all tables"
@@ -7788,11 +7794,11 @@ msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr "සියලුම වගු සඳහා අවසන් වරට වගුව යාවත්කාලීන කල වේලාව දැක්වෙන තීරුව පෙන්වන්න හෝ සඟවන්න"
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "අවසන් වරට යාවත්කාලීන කල වේලාව පෙන්වන්න"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last check timestamp for all tables"
@@ -7800,11 +7806,11 @@ msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr "සියලුම වගු සඳහා අවසන් වරට වගුව පරීක්ෂා කල වේලාව දැක්වෙන තීරුව පෙන්වන්න හෝ සඟවන්න"
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "අවසන් වරට පරීක්ෂා කල වේලාව පෙන්වන්න"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
#, fuzzy
#| msgid ""
#| "Defines whether or not type fields should be initially displayed in edit/"
@@ -7815,31 +7821,31 @@ msgid ""
msgstr ""
"සංස්කරණ/ඇතුළුකිරීම් ප්රකාරයේදී තීර වර්ගය දක්වන ක්ෂේත්රය ආරම්භයේදී පෙන්විය යුතුද නැතිද යන වග"
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "ක්ෂේත්රයේ වර්ගය පෙන්වන්න"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
#, 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:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "ශ්රිතය තීරුව පෙන්වන්න"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
#, fuzzy
#| msgid "Whether to show hint or not"
msgid "Whether to show hint or not."
msgstr "ඉඟිය පෙන්විය යුතුද නැත්ද යන වග"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "ඉඟිය පෙන්වන්න"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -7851,15 +7857,15 @@ msgstr ""
"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] ප්රතිදානය වෙත "
"සබැඳුම පෙන්වන්න"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "phpinfo() සබැඳුම පෙන්වන්න"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "MySQL සේවාදායකය පිලිබඳ විස්තරාත්මක තොරතුරු පෙන්වන්න"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -7867,11 +7873,11 @@ msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "phpMyAdmin විසින් සාදන ලද විමසුම් පෙන්විය යුතුදැයි සඳහන් කරයි"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "SQL විමසුම් පෙන්වන්න"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
#, fuzzy
#| msgid ""
#| "Defines whether the query box should stay on-screen after its submission"
@@ -7879,22 +7885,22 @@ msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "විමසුම ක්රියාත්මක කිරීමෙන් පසුව විමසුම් කවුළුව තිරය මත රඳවා ගත යුතුදැයි සඳහන් කරයි"
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "විමසුම් කවුළුව රඳවාගන්න"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
#, 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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "සංඛ්ය ලේඛන පෙන්වන්න"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
#, fuzzy
#| msgid ""
#| "Mark used tables and make it possible to show databases with locked tables"
@@ -7902,11 +7908,11 @@ msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr "භාවිතා කරන ලද වගු සලකුණු කර අගුලු ළෑ වගු සහිත දත්තගබඩා පෙන්වීමට ඉඩ සලසන්න"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "අගුලු ළෑ දත්තගබඩා මඟහරින්න"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected"
msgid ""
@@ -7914,11 +7920,11 @@ msgid ""
"detected."
msgstr "Suhosin ඇති බව හඳුනාගතහොත් ප්රධාන පිටුවේ අනතුරු ඇඟවීමක් පෙන්වයි"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin අනතුරු ඇඟවීම"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7932,13 +7938,13 @@ msgstr ""
"phpMyAdmin වින්යාස ගබඩාවට අවශ්ය එක් වගුවක් හෝ සොයාගත නොහැකි අවස්ථාවකදී දත්තගබඩා සැකිල්ල "
"පිටුවේ පෙන්වන පෙරනිමි අනතුරු ඇඟවීම අක්රීය කරන්න"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "ලොගින් කුකියේ වලංගුතාවය"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7950,11 +7956,11 @@ msgstr ""
"සංස්කරණ ප්රකාරයේදී පෙළ පෙදෙසේ පළල (තීරු ගණනින්). මෙම අගය වැඩි කිරීමෙන් SQL විමසුම් පෙළ "
"පෙදෙසේද (*2) විමසුම් කවුළුවේද (*1.25) පළල ලබා ගැනේ"
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "පෙළ පෙදෙසේ පළල"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7966,39 +7972,39 @@ msgstr ""
"සංස්කරණ ප්රකාරයේදී පෙළ පෙදෙසේ උස (පේලි ගණනින්). මෙම අගය වැඩි කිරීමෙන් SQL විමසුම් පෙළ "
"පෙදෙසේද (*2) විමසුම් කවුළුවේද (*1.25) උස ලබා ගැනේ"
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "පෙළ පෙදෙසේ උස"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
#, 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:791
+#: libraries/config/messages.inc.php:793
#, 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:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "පෙරනිමි නාමය"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
#, 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:795
+#: libraries/config/messages.inc.php:797
#, 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:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -8006,58 +8012,58 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
#, 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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "උඩුගත කිරීමේ ඩිරෙක්ටරිය"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
#, fuzzy
#| msgid "Allow for searching inside the entire database"
msgid "Allow for searching inside the entire database."
msgstr "සම්පූර්ණ දත්තගබඩාව තුලම සෙවීම සඳහා ඉඩ ලබා දෙන්න"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "දත්තගබඩා සෙවීම භාවිතා කරන්න"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "සිටුවම් හි ක්රමලේඛනය කරන්නන් සදහා වූ ටැබය සක්රීය කරන්න"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "නවතම අනුවාදය සඳහා පරීක්ෂා කරන්න"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
#, 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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8065,34 +8071,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "භාවිත නාමය"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "මුරපදය"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8104,55 +8110,55 @@ msgstr ""
"ආනයන අපනයන මෙහෙයුම් සඳහා [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] හැකිළීම යොදාගැනීම සක්රීය කරන්න"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "සර්වරයේ පොර්ට්"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "ක්රියාත්මක කරන ලද විමසුම්"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8180,44 +8186,44 @@ msgstr "HTTP සත්යාපනය"
msgid "Signon authentication"
msgstr "Signon සත්යාපනය"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "LOAD DATA භාවිතයෙන් CSV"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument පැතුරුම්පත"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "කඩිනම්"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "අභිමත"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "දත්තගබඩා අපනයන විකල්ප"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "MS එක්සෙල් සඳහා CSV"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "මයික්රොසොෆ්ට් වර්ඩ් 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "OpenDocument පෙළ"
@@ -13855,19 +13861,31 @@ msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳ
msgid "Showing as PHP code"
msgstr "PHP කේත ලෙස පෙන්වමින්"
-#: libraries/sql.lib.php:1765
-#, fuzzy
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
#| 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"මෙම වගුවෙහි අනුපම තීරුවක් නැත. සුරැකීමෙන් අනතුරුව වෙනස් කිරීමට, පිටපත් කිරීමට, මකා දැමීමට අදාළ "
"ඇඳීම් ක්රියා විරහිත වනු ඇත."
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"මෙම වගුවෙහි අනුපම තීරුවක් නැත. සුරැකීමෙන් අනතුරුව වෙනස් කිරීමට, පිටපත් කිරීමට, මකා දැමීමට අදාළ "
+"ඇඳීම් ක්රියා විරහිත වනු ඇත."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -15183,6 +15201,10 @@ msgstr "ටීකාව:"
msgid "Drag to reorder"
msgstr "අනුපිලිවෙල නැවත සකස් කිරීමට අදින්න."
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "ආරම්භක පේළිය:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "පේළි තෝරන්න (අවම වශයෙන් එකක්):"
diff --git a/po/sk.po b/po/sk.po
index 31284414a4..4fb64e7744 100644
--- a/po/sk.po
+++ b/po/sk.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-06-16 07:14+0200\n"
"Last-Translator: Martin Lacina \n"
"Language-Team: Slovak %s:"
msgstr "SQL dopyt v databáze %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Odošli dopyt"
@@ -3374,7 +3375,7 @@ msgstr "Upraviť záložku"
msgid "Delete bookmark"
msgstr "Odstrániť záložku"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3382,19 +3383,19 @@ msgstr ""
"Server neodpovedá (alebo socket lokálneho MySQL servera nie je správne "
"nastavený)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Server neodpovedá."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Overte prístupové práva k adresáru, v ktorom je uložená databáza."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Podrobnosti…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Nepodarilo sa pripojiť ku controluser podľa nastavení z konfigurácie."
@@ -3436,9 +3437,9 @@ msgstr[1] "%1$s výskyty v %2$s"
msgstr[2] "%1$s výskytov v %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3492,28 +3493,28 @@ msgstr "Filtrovať riadky"
msgid "Search this table"
msgstr "Hľadať v tabuľke"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Začiatok"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Predchádzajúci"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Ďalší"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Koniec"
@@ -3522,8 +3523,9 @@ msgstr "Koniec"
msgid "All"
msgstr "Všetko"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Počet riadkov:"
@@ -3620,16 +3622,16 @@ msgid "Query took %01.4f seconds."
msgstr "Dopyt zabral %01.4f sekúnd."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Výber:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3637,7 +3639,7 @@ msgstr "Výber:"
msgid "Check All"
msgstr "Označiť všetko"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Náhľad k tlači"
@@ -3735,11 +3737,11 @@ msgstr "Chýbajú informácie o Git-e!"
msgid "Open new phpMyAdmin window"
msgstr "Otvoriť nové okno phpMyAdmina"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Kliknutím v pruhu prejdete na začiatok stránky"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Pokiaľ chcete pokračovať, JavaScript musí byť povolený!"
@@ -3803,8 +3805,8 @@ msgstr "Primárny kľúč bol zrušený."
msgid "Index %s has been dropped."
msgstr "Index pre %s bol odstránený."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3822,7 +3824,7 @@ msgstr ""
"odstránený."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -3834,16 +3836,16 @@ msgid "View"
msgstr "Pohľad"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3855,10 +3857,10 @@ msgid "Structure"
msgstr "Štruktúra"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3866,19 +3868,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Hľadať"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3887,7 +3889,7 @@ msgid "Insert"
msgstr "Vložiť"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3896,21 +3898,21 @@ msgid "Privileges"
msgstr "Oprávnenia"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operácie"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Sledovanie"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3927,16 +3929,16 @@ msgstr "Spúšťače"
msgid "Database seems to be empty!"
msgstr "Databáza vyzerá prázdna!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Dopyt podľa príkladu"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rutiny"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3944,16 +3946,16 @@ msgstr "Rutiny"
msgid "Events"
msgstr "Udalosti"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Dizajnér"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Centrálne stĺpce"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3961,38 +3963,38 @@ msgstr "Centrálne stĺpce"
msgid "Databases"
msgstr "Databázy"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Používatelia"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Binárny log"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replikácia"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Premenné"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Znakové sady"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Rozšírenia"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Systémy"
@@ -4020,7 +4022,7 @@ msgstr[0] "Bol vložený %1$d riadok."
msgstr[1] "Boli vložené %1$d riadky."
msgstr[2] "Bolo vložených %1$d riadkov."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4688,12 +4690,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Vymenovanie hodnôt vybratých zo zoznamu definovaných hodnôt"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Maximálna veľkosť: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4704,118 +4706,114 @@ msgstr "Maximálna veľkosť: %s%s"
msgid "MySQL said: "
msgstr "MySQL hlási: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Vysvetliť SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Preskočiť vysvetlenie SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Bez PHP kódu"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Vytvoriť PHP kód"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Upraviť v riadku"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ne"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%a %d.%B %Y, %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dní, %s hodín, %s minút a %s sekúnd"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Chýbajúci parameter:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Prejsť na databázu \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Kliknite pre prepnutie"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Prechádzať váš počítač:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Zvoľte súbor z upload adresára %s web servera:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Adresár určený pre upload súborov sa nedá otvoriť."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Žiadny súbor pre nahrávanie!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Vyprázdniť"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Spustiť"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Vytlačiť"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Vytvorenie"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Posledná zmena"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Posledná kontrola"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Začiatočný riadok:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Hľadať:"
@@ -4838,13 +4836,13 @@ msgstr "Použiť túto hodnotu"
msgid "Rows"
msgstr "Riadkov"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Dáta"
@@ -5259,7 +5257,7 @@ msgid "Set value: %s"
msgstr "Nastavená hodnota: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Obnoviť východziu hodnotu"
@@ -5979,10 +5977,10 @@ msgstr "Prispôsobiť režim prezerania."
msgid "Customize default options."
msgstr "Prispôsobenie východzích nastavení."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV dáta"
@@ -6460,7 +6458,7 @@ msgid "Maximum displayed SQL length"
msgstr "Mazimálna dĺžka zobrazeného SQL dopytu"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Uživatelia nemôžu nastaviť vyššiu hodnotu"
@@ -6672,33 +6670,41 @@ msgstr "Toto sú odkazy na Upraviť, Kopírovať a Odstrániť."
msgid "Where to show the table row links"
msgstr "Kde zobraziť linky riadkov tabuľky"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr "Použiť prirodzené triedenie pre mená tabuliek a databáz."
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Prirodzené poradie"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Použiť len ikony, len text alebo obidve."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Navigačná lišta tabuľky"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"Použiť vyrovnávaciu pamäť GZip výstupu pre zvýšenie rýchlosti HTTP prenosov."
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "Medzipamäť pre GZip výstup"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6706,19 +6712,19 @@ msgstr ""
"[kbd]SMART[/kbd] - t.j. zostupné radenie pre polia typu TIME, DATE, DATETIME "
"a TIMESTAMP, ostatné budú radené vzostupne."
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Východzie radenie"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Použiť trvalé (persistent) spojenia k MySQL databázam."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Trvalé spojenia"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6728,11 +6734,11 @@ msgstr ""
"vyžadovaných tabuliek pre miesto uloženia phpMyAdmin konfigurácie nebola "
"nájdená."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Chýbajú tabuľky pre miesto uloženia phpMyAdmin konfigurácie"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6740,11 +6746,11 @@ msgstr ""
"Vypnúť štandardné varovanie pri zistení rozdielu medzi verziou knižnice "
"MySQL a servera."
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Varovanie o rozdiele medzi verziou knižnice MySQL a servera"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6752,27 +6758,27 @@ msgstr ""
"Vypnúť štandardné varovanie na stránke so štruktúou tabuľky, ak názvy "
"stĺpcov v tabuľke patria k rezervovaným kľúčovým slovám MySQL."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Varovanie o kľúčových slovách MySQL"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Ako zobraziť lišty menu"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Ako zobraziť rôzne príkazy"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Zakázať úpravu polí typu BLOB a BINARY."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Chrániť binárne polia"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6783,104 +6789,104 @@ msgstr ""
"zobrazeniu histórie dopytoj Java Scriptové funkcie (bude stratená pri "
"zavretí okna)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Trvalá história dopytov"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Koľko dopytov sa má držať v histórii."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Dĺžka histórie dopytov"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr "Zvoľte, ktorí funkcie budú použité pre konverziu znakových sád."
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Prekódovací nástroj"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Pri prechádzaní tabuliek, sa pre každú uloží nastavenie triedenia."
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Pamätať si triedenie tabuľky"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr "Prednastavený spôsob triedenia pre tabuľky s primárnym kľúčom."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Východzie radenie primárneho kľúča"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr "Opkovať hlavičku každých X buniek, [kbd]0[/kbd] vypne túto možnosť."
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Opakovať záhlavie"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Úprava mriežky: vyvolať akciu"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Relačné zobrazenie"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "Pre zobrazenie nastavení"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Úprava mriežky: uložiť všetky upravené bunky naraz"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Adresár na serveri pre ukladanie exportov."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Adresár pre ukladanie"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Nechajte prázdne pokiaľ nepoužívate."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Poradie overovania hostiteľa"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Nechajte prázdne, ak chcete použiť východzie nastavenia."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Pravidlá overovania hostiteľa"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Povoliť prihlásenie bez hesla"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Povoliť prihlásenia užívateľa root"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Časová zóna sedenia"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -6888,15 +6894,15 @@ msgstr ""
"Nastaví efektívnu časovú zónu; pravdepodobne rôznu od nastavenia vášho "
"databázového servera"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "Názov pre zobrazenie pri použití HTTP prihlasovania."
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -6906,19 +6912,19 @@ msgstr ""
"overovanie[/a] (Neuložená vo vašom koreňovom adresári dokumentov, doporučené "
"umiestneie: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "Konfiguračný súbor SweKey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Výber použitej prihlasovacej metódy."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Typ overovania"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -6926,11 +6932,11 @@ msgstr ""
"Nechajte prázdne pre žiadnu podporu [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]záložiek[/a], navrhované: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Tabuľka záložiek"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -6938,31 +6944,31 @@ msgstr ""
"Nechajte prázdne pre žiadne komentáre či mime typy polí, navrhované: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Tabuľka informácii o poliach"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Komprimovať spojenie s MySQL serverom."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Komprimovať pripojenie"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "Ako sa pripájať k serveru, nechajte [kbd]tcp[/kbd] ak si nie ste istí."
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Typ pripojenia"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Heslo kontrolného užívateľa"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -6970,11 +6976,11 @@ msgstr ""
"Špeciálny MySQL užívateľ s obmedzenými právami, viac informácii je "
"dostupných na [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Kontrolný užívateľ"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -6982,11 +6988,11 @@ msgstr ""
"Alternatívny hostiteľ na ukladanie konfigurácie; ponechajte prázdne, aby sa "
"použil už definovaný hostiteľ."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Kontrolný hostiteľ"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -6996,15 +7002,15 @@ msgstr ""
"ponechajte prázdne na použitie štandardného portu alebo už definovaný port, "
"ak je nastavený server rovnaký ako hostiteľ."
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Kontrolný port"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Skryť databázy zodpovedajúce regulárnemu výrazu (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7012,15 +7018,15 @@ msgstr ""
"Viac informácii na [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] a [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Zakazať použitie INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Skryť databázy"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7028,23 +7034,23 @@ msgstr ""
"Nechajte prázdne pre vypnutie histórie SQL dopytov, navrhované: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Tabuľka histórie SQL dopytov"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Meno počítača, kde beží MySQL server."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Meno servera"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL pri odhlásení"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7052,15 +7058,15 @@ msgstr ""
"Obmedzuje počet nastavení tabuľky, ktoré sú uložené v databáze. Najstaršie "
"záznamy sú automaticky odstraňované."
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Maximálny počet uložených nastavení tabuliek"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7068,11 +7074,11 @@ msgstr ""
"Nechajte prázdne pre vypnutie podpory pre ukladanie vyhľadávaní, navrhované: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Tabuľka centrálnych stĺpcov"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7080,15 +7086,15 @@ msgstr ""
"Nechajte prázdne pre vypnutie podpory centrálnych stĺpcov. Odporúčaná "
"hodnota: [kbd]pma__central_columns[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Pokúsiť sa pripojiť bez hesla."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Pripojiť sa bez hesla"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7098,30 +7104,30 @@ msgstr ""
"ich pôvodnom význame, vložte spätné lomítko pred, napríklad [kbd]'moja"
"\\_db'[/kbd] namiesto [kbd]'moja_db'[/kbd]."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Zobraziť len vybrané databázy"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Nechajte prázdne ak nepoužívate prihlasovací config."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Heslo pre prihlásenie podľa konfigurácie"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Nechajte prázdne pre vypnutie podpory pre PDF schémy, navrhované: "
"[kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF schéma: tabuľka stránok"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7131,21 +7137,21 @@ msgstr ""
"viď [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Ak ponecháte prázdne, "
"bude táto možnosť vypnutá. Doporučená hodnota: [kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Meno databázy"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Port, na ktorom počúva MySQL server, nechajte prázdne pre východziu hodnotu."
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Port servera"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7153,11 +7159,11 @@ msgstr ""
"Nechajte prázdne pre vypnutie možnosti \"trvalého\" ukladania nedávno "
"použitých tabuliek. Odporúčaná hodnota: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Naposledy použitá tabuľka"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7165,11 +7171,11 @@ msgstr ""
"Nechajte prázdne pre vypnutie možnosti \"trvalého\" ukladania obľúbených "
"tabuliek počas sedenia. Odporúčaná hodnota: [kbd]pma__favorite[/kbd]."
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Tabuľka obľúbených"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7177,11 +7183,11 @@ msgstr ""
"Nechajte prázdne pre vypnutie podpory [a@http://wiki.phpmyadmin.net/pma/"
"relation]relation-links[/a]. Odporúčaná hodnota: [kbd]pma__relation[/kbd]."
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Relačná tabuľka"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7189,32 +7195,32 @@ msgstr ""
"Priklad, viď [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]typy "
"overovania[/a]."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Meno prihlasovacej session/sedenia"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "URL pri prihlásení"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Socket na ktorom počúva MySQL server, nechajte prázdne pre východziu hodnotu."
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Socket servera"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Povoliť SSL pre pripojenie k MySQL serveru."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Použiť SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7222,11 +7228,11 @@ msgstr ""
"Nechajte prázdne pre vypnutie podpory pre PDF schému. Odporúčaná hodnota: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Dizajnér a PDF schéma: tabuľka súradníc"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7234,11 +7240,11 @@ msgstr ""
"Tabuľka obsahujúca popisy polí. Nechajte prázdnu pre vypnutie tejto funkcie. "
"Odporúčaná hodnota: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Zobrazenie stĺpcov tabuľky"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7246,11 +7252,11 @@ msgstr ""
"Nechajte prázdne pre vypnutie podpory \"trvalého\" ukladania nastavení, "
"navrhované: [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Tabuľka pre nastavenie rozhrania"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7258,11 +7264,11 @@ msgstr ""
"Či chcete pridať príkaz DROP DATABASE IF EXISTS do logu ako prvý riadok pri "
"vytváraní databázy."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Pridať DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7270,11 +7276,11 @@ msgstr ""
"Či chcete pridať príkaz DROP TABLE IF EXISTS do logu ako prvý riadok pri "
"vytváraní tabuľky."
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Pridať DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7282,21 +7288,21 @@ msgstr ""
"Či chcete pridať príkaz DROP VIEW IF EXISTS do logu ako prvý riadok pri "
"vytváraní pohľadu."
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Pridať DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Určuje zoznam príkazov, ktoré sa automaticky použijú pri vytváraní nových "
"verzií."
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Sledované príkazy"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7304,22 +7310,22 @@ msgstr ""
"Nechajte prázdne pre vypnutie podpory pre sledovanie SQL dopytov. Odporúčaná "
"hodnota: [kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Tabuľka pre sledovanie SQL dopytov"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
"Či má sledovací mechanizmus automaticky vytvárať verzie tabuliek a pohľadov."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Automaticky vytvárať verzie"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7327,33 +7333,33 @@ msgstr ""
"Nechajte prázdne pre vypnutie možnosti ukladania užívateľských nastavení v "
"databáze. Odporúčaná hodnota: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Tabuľka pre užívateľské nastavenia"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Tabuľka používateľov"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Tabuľka užívateľských skupín"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7361,15 +7367,15 @@ msgstr ""
"Nechajte prázdne pre vypnutie možnosti pre schovávanie navigačných položiek. "
"Odporúčané nastavenie: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Užívateľ pre prihlásenie podľa konfigurácie"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7377,20 +7383,20 @@ msgstr ""
"Užívateľsky prívetivý popis tohto servera. Ak necháte prízdne, zobrazí sa "
"namiesto popisu meno servera."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Dlhé meno tohto servera"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
"Či sa bude užívateľovi zobrazovať tlačidlo \"zobraziť všetky (riadky)\"."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Povoliť zobraziť všetky riadky"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7401,54 +7407,54 @@ msgstr ""
"konfiguračnom súbore; toto nemá vplyv na možnosť vykonať rovnaký príkaz "
"priamo."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Zobraziť formulár na zmenu hesla"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Zobraziť formulár na vytvorenie databázy"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr "Zobraziť/Skryť stĺpec zobrazujúci komentáre pre všetky tabuľky."
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr "Zobraziť komentáre tabuľky"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Zobraziť/Skryť stĺpec s Časovou značkou vytvorenia vo všetkých tabuľkách."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Zobraziť viac časových značiek"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Zobraziť/Skryť stĺpec s Časovou značkou poslednej aktualizácie vo všetkých "
"tabuľkách."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Zobraziť Časovú značku poslednej aktualizácie"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Zobraziť/Skryť stĺpec s Časovou značkou poslednej kontroly vo všetkých "
"tabuľkách."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Zobraziť Časovú značku poslednej kontroly"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7456,27 +7462,27 @@ msgstr ""
"Definuje, či sa majú alebo nemajú zobrazovať typové polia v móde úprav/"
"vkladania."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Zobraziť typy polí"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Zobraziť zoznam funkcií v móde úprav."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Zobraziť zoznam funkcií"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Či sa má zobrazovať nápoveda alebo nie."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Zobraziť nápovedu"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7484,53 +7490,53 @@ msgstr ""
"Zobraziť odkaz na výstup funkcie [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Zobraziť odkaz na phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Zobraziť podrobné informácie o MySQL serveri"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "Určuje, či sa budú zobrazovať SQL dopyty generované phpMyAdminom."
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Zobraziť SQL dopyty"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "Určuje či má príkazové okno ostať na obrazovke po vykonaní."
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Zachovať príkazové okno"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Povoliť zobrazenie štatistík o databázach a tabuľkách (napr. využité miesto)."
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Zobraziť štatistiky"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Označiť použité tabuľky a umožniť zobrazovanie databáz s uzamknutými "
"tabuľkami."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Preskočiť zamknuté tabuľky"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7538,11 +7544,11 @@ msgstr ""
"Vypne štandardné varovanie, ktoré je zobrazované na hlavnej stránke ak je "
"zistený Suhosin."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Varovanie Suhosin rozšírenia"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 "
@@ -7551,11 +7557,11 @@ msgstr ""
"Vypnúť štandardné varovanie na hlavnej stránke, ak je hodnota PHP nastavenia "
"session.gc_maxlifetime nižšia ako hodnota `LoginCookieValidity`."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "Varovanie o platnosti prihlasovacej cookie"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7563,11 +7569,11 @@ msgstr ""
"Veľkosť editačného okna (počet stĺpcov). Táto hodnota bude zväčšená pre okná "
"SQL dopytov (*2)."
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Stĺpce s textovou oblasťou"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7575,31 +7581,31 @@ msgstr ""
"Veľkosť editačného okna (počet riadkov). Táto hodnota bude zväčšená pre okná "
"SQL dopytov (*2)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Riadkov v textovej oblasti"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr "Názov okna prehliadača pri výbere databázy."
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Názov okna prehliadača keď nie je nič vybrané."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Východzí popis"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "Názov okna prehliadača keď je vybraný server."
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "Popis okna prehliadača keď je vybraná tabuľka."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7611,27 +7617,27 @@ msgstr ""
"Forwarded-For) prichádzajúcej z proxy 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Zoznam dôveryhodných proxy pre povolenie/zakázanie IP adresy"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr "Adresár na serveri, kde môžete nahrať súbor pre import."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Adresár pre nahrávanie"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Povoliť prehľadávať celú databázu."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Použiť databázové vyhľadávanie"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7639,26 +7645,26 @@ msgstr ""
"Pokiaľ je vypnuté, užívatelia nemôžu zmeniť žiadne z nižšie uvedených "
"nastavení, bez ohľadu na zaškrtávacie pole vpravo."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Povoliť záložku Pre vývojára v nastaveniach"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Skontrolovať najnovšiu verziu"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "Povoliť kontrolu poslednej verzie na hlavnej stránke phpMyAdmina."
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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 verzie"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7666,11 +7672,11 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Proxy url"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7680,19 +7686,19 @@ msgstr ""
"žiadne prihlásenie. Ak je zadané užívateľské meno, použije sa základné "
"overenie. Žiadny iný spôsob overovania momentálne nie je podporovaný."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Proxy užívateľské meno"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "Heslo pre prihlásenie sa k proxy serveru."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Proxy heslo"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7700,53 +7706,53 @@ msgstr ""
"Povoliť [a@http://cs.wikipedia.org/wiki/ZIP_(souborový_formát)]ZIP[/a] "
"kompresiu pre import a export operácie."
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Vložte váš verejný kľúč pre službu reCaptcha."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Verejný kľúč pre reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Zadajte váš súkromný kľúč pre službu reCaptcha."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Privátny kľúč pre reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "Zvoľte východziu akciu pri odosielaní hlásení o chybe."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Poslať chybové hlásenia"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "Vykonaných dopytov"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Povoliť režim nulovej konfigurácie"
@@ -7772,44 +7778,44 @@ msgstr "HTTP overovanie"
msgid "Signon authentication"
msgstr "Overovanie signon"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV pomocou LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Tabuľkový procesor Open Document"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Rýchle"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Vlastné"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Nastavenia exportu databáz"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV pre MS Excel dáta"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Open Document Text"
@@ -13348,15 +13354,31 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Zobrazujem ako PHP kód"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Aktuálny výber neobsahuje unikátny stĺpec. Úprava gridu, zaškrtávanie, "
"editácia, kopírovanie a mazanie nie sú dostupné."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Aktuálny výber neobsahuje unikátny stĺpec. Úprava gridu, zaškrtávanie, "
+"editácia, kopírovanie a mazanie nie sú dostupné."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problémy s indexami v tabuľke `%s`"
@@ -14611,6 +14633,10 @@ msgstr "Komentár:"
msgid "Drag to reorder"
msgstr "Usporiadajte pretiahnutím"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Začiatočný riadok:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Zvoliť stĺpec (najmenej jeden):"
diff --git a/po/sl.po b/po/sl.po
index 5ec2991c02..077e17a6d8 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,17 +3,17 @@ 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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-06-20 19:09+0200\n"
"Last-Translator: Domen \n"
-"Language-Team: Slovenian "
-"\n"
+"Language-Team: Slovenian \n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
-"n%100==4 ? 2 : 3;\n"
+"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
+"%100==4 ? 2 : 3;\n"
"X-Generator: Weblate 2.4-dev\n"
#: changelog.php:37 license.php:28
@@ -299,7 +299,7 @@ msgid "Tracked tables"
msgstr "Sledene tabele"
#: db_tracking.php:125 db_tracking.php:287 libraries/Menu.class.php:247
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:798
#: 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
@@ -325,7 +325,7 @@ msgid "Updated"
msgstr "Posodobljeno"
#: db_tracking.php:129 js/messages.php:237 libraries/Menu.class.php:551
-#: libraries/Util.class.php:4386 libraries/config.values.php:104
+#: libraries/Util.class.php:4391 libraries/config.values.php:104
#: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101
#: libraries/server_status_processes.lib.php:94 libraries/tracking.lib.php:278
msgid "Status"
@@ -513,8 +513,8 @@ msgstr "Dodaj geometrijo"
#: gis_data_editor.php:407 js/messages.php:286
#: libraries/DbSearch.class.php:467 libraries/DisplayResults.class.php:1807
-#: libraries/Util.class.php:4885 libraries/browse_foreigners.lib.php:142
-#: libraries/core.lib.php:610 libraries/display_change_password.lib.php:109
+#: 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_import.lib.php:392 libraries/index.lib.php:44
@@ -543,8 +543,9 @@ msgstr "Dodaj geometrijo"
#: libraries/tracking.lib.php:532 libraries/tracking.lib.php:652
#: prefs_manage.php:277 prefs_manage.php:355
#: templates/columns_definitions/column_definitions_form.phtml:59
-#: templates/index_form.phtml:238 templates/table/selection_form.phtml:75
-#: view_create.php:276 view_operations.php:106
+#: templates/index_form.phtml:238 templates/startAndNumberOfRowsPanel.phtml:14
+#: templates/table/selection_form.phtml:75 view_create.php:276
+#: view_operations.php:106
msgid "Go"
msgstr "Izvedi"
@@ -667,7 +668,7 @@ msgstr ""
msgid "Could not load the progress of the import."
msgstr "Ne morem naložiti napredka nalaganja."
-#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:735
+#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:738
#: libraries/export.lib.php:464
#: libraries/plugins/schema/Export_Relation_Schema.class.php:302
#: user_password.php:208
@@ -764,7 +765,7 @@ msgstr "Pokaži podatke o PHP"
msgid "Version information:"
msgstr "Podatki o različici:"
-#: index.php:392 libraries/Util.class.php:429 libraries/Util.class.php:490
+#: 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/navigation/NavigationHeader.class.php:197
@@ -897,7 +898,7 @@ msgstr ""
"Strežnik, ki teče z Suhosin. Prosimo, nanašajte se na %sdokumentacijo%s za "
"morebitna vprašanja."
-#: js/messages.php:38 libraries/import.lib.php:125 sql.php:151
+#: js/messages.php:38 libraries/import.lib.php:125 sql.php:161
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Poizvedbe \"DROP DATABASE\" so izključene."
@@ -1122,7 +1123,7 @@ msgstr "Simuliraj poizvedbo"
msgid "Matched rows:"
msgstr "Ujemajoče vrstice:"
-#: js/messages.php:114 libraries/Util.class.php:638
+#: js/messages.php:114 libraries/Util.class.php:641
msgid "SQL query:"
msgstr "Poizvedba SQL:"
@@ -1165,12 +1166,12 @@ msgid "Other"
msgstr "Drugo"
#. l10n: Thousands separator
-#: js/messages.php:131 libraries/Util.class.php:1460
+#: js/messages.php:131 libraries/Util.class.php:1463
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:133 libraries/Util.class.php:1462
+#: js/messages.php:133 libraries/Util.class.php:1465
msgid "."
msgstr ","
@@ -1276,40 +1277,40 @@ msgid "Processes"
msgstr "Procesi"
#. l10n: shortcuts for Byte
-#: js/messages.php:167 libraries/Util.class.php:1404
+#: js/messages.php:167 libraries/Util.class.php:1407
msgid "B"
msgstr "B"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:168 libraries/Util.class.php:1406
+#: js/messages.php:168 libraries/Util.class.php:1409
#: libraries/server_status_monitor.lib.php:217
msgid "KiB"
msgstr "KiB"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:169 libraries/Util.class.php:1408
+#: js/messages.php:169 libraries/Util.class.php:1411
#: libraries/display_export.lib.php:702
#: libraries/server_status_monitor.lib.php:218
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:170 libraries/Util.class.php:1410
+#: js/messages.php:170 libraries/Util.class.php:1413
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:171 libraries/Util.class.php:1412
+#: js/messages.php:171 libraries/Util.class.php:1415
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:172 libraries/Util.class.php:1414
+#: js/messages.php:172 libraries/Util.class.php:1417
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:173 libraries/Util.class.php:1416
+#: js/messages.php:173 libraries/Util.class.php:1419
msgid "EiB"
msgstr "EiB"
@@ -1328,7 +1329,7 @@ msgid "Traffic"
msgstr "Promet"
#: js/messages.php:179 libraries/Menu.class.php:585
-#: libraries/Util.class.php:4390 libraries/server_status_monitor.lib.php:257
+#: libraries/Util.class.php:4395 libraries/server_status_monitor.lib.php:257
msgid "Settings"
msgstr "Nastavitve"
@@ -1638,8 +1639,8 @@ msgstr ""
#: js/messages.php:264 libraries/Menu.class.php:350
#: libraries/Menu.class.php:453 libraries/Menu.class.php:581
-#: libraries/Util.class.php:4389 libraries/Util.class.php:4404
-#: libraries/Util.class.php:4421 libraries/config/messages.inc.php:236
+#: libraries/Util.class.php:4394 libraries/Util.class.php:4409
+#: libraries/Util.class.php:4426 libraries/config/messages.inc.php:236
#: libraries/display_import.lib.php:105
#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:238
#: setup/frames/menu.inc.php:26
@@ -1709,7 +1710,7 @@ msgstr "Oblikovanje SQL ..."
msgid "Cancel"
msgstr "Prekliči"
-#: js/messages.php:290 libraries/Header.class.php:456
+#: js/messages.php:290 libraries/Header.class.php:455
msgid "Page-related settings"
msgstr "Nastavitve, povezane s stranjo"
@@ -1786,7 +1787,7 @@ msgstr "Kopiranje zbirke podatkov"
msgid "Changing Charset"
msgstr "Spreminjanje nabora znakov"
-#: js/messages.php:314 libraries/Util.class.php:3234
+#: js/messages.php:314 libraries/Util.class.php:3237
msgid "Enable foreign key checks"
msgstr "Omogoči preverjanja tujih ključev"
@@ -1821,9 +1822,9 @@ msgstr "Opredelitev shranjene funkcije mora vsebovati izjavo RETURN!"
#: js/messages.php:328 libraries/DisplayResults.class.php:4857
#: libraries/DisplayResults.class.php:5115 libraries/Menu.class.php:342
#: libraries/Menu.class.php:444 libraries/Menu.class.php:577
-#: libraries/Util.class.php:3675 libraries/Util.class.php:3676
-#: libraries/Util.class.php:4388 libraries/Util.class.php:4403
-#: libraries/Util.class.php:4420 libraries/config/messages.inc.php:230
+#: libraries/Util.class.php:3680 libraries/Util.class.php:3681
+#: libraries/Util.class.php:4393 libraries/Util.class.php:4408
+#: libraries/Util.class.php:4425 libraries/config/messages.inc.php:230
#: libraries/display_export.lib.php:167 libraries/rte/rte_list.lib.php:146
#: libraries/server_privileges.lib.php:2085
#: libraries/server_privileges.lib.php:2164
@@ -1872,11 +1873,11 @@ msgstr "Prikaži polje poizvedbe"
#: js/messages.php:343 libraries/Console.class.php:88
#: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3450
#: libraries/DisplayResults.class.php:4839 libraries/Index.class.php:723
-#: libraries/Util.class.php:664 libraries/Util.class.php:1218
-#: libraries/Util.class.php:3673 libraries/Util.class.php:3674
+#: libraries/Util.class.php:667 libraries/Util.class.php:1221
+#: 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:775
+#: libraries/config/messages.inc.php:777
#: libraries/server_user_groups.lib.php:119
#: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179
msgid "Edit"
@@ -2570,7 +2571,6 @@ msgstr ""
#: js/messages.php:592
#, php-format
-#| msgid "Enter executes queries in console"
msgid "%s queries executed %s times in %s seconds."
msgstr "%s poizvedb izvedenih %s-krat v %s sekundah."
@@ -2580,12 +2580,10 @@ msgid "%s argument(s) passed"
msgstr "podanih %s argumentov"
#: js/messages.php:594
-#| msgid "Show table comments"
msgid "Show arguments"
msgstr "Prikaži argumente"
#: js/messages.php:595
-#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Skrij argumente"
@@ -2668,63 +2666,63 @@ msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1620
+#: js/messages.php:655 libraries/Util.class.php:1623
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1622
+#: js/messages.php:657 libraries/Util.class.php:1625
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1624
+#: js/messages.php:659 libraries/Util.class.php:1627
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1626
+#: js/messages.php:661 libraries/Util.class.php:1629
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1628
+#: js/messages.php:663 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:1630
+#: js/messages.php:665 libraries/Util.class.php:1633
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1632
+#: js/messages.php:667 libraries/Util.class.php:1635
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1634
+#: js/messages.php:669 libraries/Util.class.php:1637
msgid "Aug"
msgstr "avg"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1636
+#: js/messages.php:671 libraries/Util.class.php:1639
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1638
+#: js/messages.php:673 libraries/Util.class.php:1641
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1640
+#: js/messages.php:675 libraries/Util.class.php:1643
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1642
+#: js/messages.php:677 libraries/Util.class.php:1645
msgid "Dec"
msgstr "dec"
@@ -2762,32 +2760,32 @@ msgid "Sun"
msgstr "ned"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1647
+#: js/messages.php:698 libraries/Util.class.php:1650
msgid "Mon"
msgstr "pon"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1649
+#: js/messages.php:700 libraries/Util.class.php:1652
msgid "Tue"
msgstr "tor"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1651
+#: js/messages.php:702 libraries/Util.class.php:1654
msgid "Wed"
msgstr "sre"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1653
+#: js/messages.php:704 libraries/Util.class.php:1656
msgid "Thu"
msgstr "čet"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1655
+#: js/messages.php:706 libraries/Util.class.php:1658
msgid "Fri"
msgstr "pet"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1657
+#: js/messages.php:708 libraries/Util.class.php:1660
msgid "Sat"
msgstr "sob"
@@ -2929,7 +2927,7 @@ msgid "Please enter a valid HEX input"
msgstr "Prosimo, vnesite veljaven heksadecimalen vnos"
#: js/messages.php:785 libraries/Message.class.php:199
-#: libraries/Util.class.php:624 libraries/core.lib.php:245
+#: 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
msgid "Error"
@@ -3032,7 +3030,7 @@ msgid "Requery"
msgstr "Ponovna poizvedba"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:790
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3083,7 +3081,7 @@ msgstr "Med trenutno sejo"
msgid "Explain"
msgstr "Razloži"
-#: libraries/Console.class.php:216 libraries/Util.class.php:1291
+#: libraries/Console.class.php:216 libraries/Util.class.php:1294
#: libraries/sql.lib.php:278
msgid "Profiling"
msgstr "Profiliranje"
@@ -3164,17 +3162,14 @@ msgid "Press Enter to execute query"
msgstr "Pritisnite enter, da izvedete poizvedbo"
#: libraries/Console.class.php:277
-#| msgid "Ascending"
msgid "ascending"
msgstr "naraščajoče"
#: libraries/Console.class.php:280
-#| msgid "Descending"
msgid "descending"
msgstr "padajoče"
#: libraries/Console.class.php:283
-#| msgid "Order"
msgid "Order:"
msgstr "Vrstni red:"
@@ -3183,7 +3178,6 @@ msgid "Count"
msgstr "Štetje"
#: libraries/Console.class.php:292
-#| msgid "Execute every"
msgid "Execution order"
msgstr "Vrstni red izvajanja"
@@ -3192,37 +3186,31 @@ msgid "Time taken"
msgstr "Porabljen čas"
#: libraries/Console.class.php:298
-#| msgid "Order"
msgid "Order by:"
msgstr "Razvrsti po:"
#: libraries/Console.class.php:301
-#| msgid "SQL queries"
msgid "Group queries"
msgstr "Združi poizvedbe"
#: libraries/Console.class.php:304
-#| msgid "SQL queries"
msgid "Ungroup queries"
msgstr "Razdruži poizvedbe"
#: libraries/Console.class.php:315
-#| msgid "Show create"
msgid "Show trace"
msgstr "Pokaži sled"
#: libraries/Console.class.php:316
-#| msgid "Hide Panel"
msgid "Hide trace"
msgstr "Skrij sled"
#: libraries/Console.class.php:317
-#| msgid "Count"
msgid "Count:"
msgstr "Štetje:"
-#: libraries/Console.class.php:332 libraries/Util.class.php:1260
-#: libraries/config/messages.inc.php:777
+#: libraries/Console.class.php:332 libraries/Util.class.php:1263
+#: libraries/config/messages.inc.php:779
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3311,7 +3299,6 @@ msgid "Sort:"
msgstr "Razvrsti:"
#: libraries/DBQbe.class.php:630
-#| msgid "Sort:"
msgid "Sort order:"
msgstr "Vrstni red razvrščanja:"
@@ -3372,7 +3359,7 @@ msgstr "Izbrisano:"
msgid "SQL query on database %s:"
msgstr "Poizvedba SQL na zbirki podatkov %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Izvedi poizvedbo"
@@ -3396,7 +3383,7 @@ msgstr "Posodobi zaznamek"
msgid "Delete bookmark"
msgstr "Izbriši zaznamek"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3404,19 +3391,19 @@ msgstr ""
"Strežnik se ne odziva (ali pa lokalna vtičnica strežnika ni pravilno "
"konfigurirana)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Strežnik se ne odziva."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Prosimo, preverite pravice mape, v kateri se nahaja zbirka podatkov."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Podrobnosti …"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Povezava za controluserja, kot je določena v vaši konfiguraciji, je "
@@ -3462,9 +3449,9 @@ msgstr[2] "%1$s zadetki v %2$s"
msgstr[3] "%1$s zadetkov v %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3518,28 +3505,28 @@ msgstr "Filtriraj vrstice"
msgid "Search this table"
msgstr "Išči po tabeli"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Začetek"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Prejšnja"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Naslednja"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Konec"
@@ -3548,8 +3535,9 @@ msgstr "Konec"
msgid "All"
msgstr "Vse"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Število vrstic:"
@@ -3645,16 +3633,16 @@ msgid "Query took %01.4f seconds."
msgstr "Poizvedba je potrebovala %01.4f sekunde."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Z označenim:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3662,7 +3650,7 @@ msgstr "Z označenim:"
msgid "Check All"
msgstr "Označi vse"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Pogled za tiskanje"
@@ -3758,11 +3746,11 @@ msgstr "Manjkajo podatki o različici Git!"
msgid "Open new phpMyAdmin window"
msgstr "Odpri novo okno phpMyAdmin"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Kliknite na prečko, da se vrnete na vrh strani"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Po tej točki mora biti JavaScript omogočen!"
@@ -3826,8 +3814,8 @@ msgstr "Zavrgel sem primarni ključ."
msgid "Index %s has been dropped."
msgstr "Zavrgel sem indeks %s."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3845,7 +3833,7 @@ msgstr ""
"odstrani."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Strežnik"
@@ -3857,16 +3845,16 @@ msgid "View"
msgstr "Pogled"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3878,10 +3866,10 @@ msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3889,19 +3877,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Iskanje"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3910,7 +3898,7 @@ msgid "Insert"
msgstr "Vstavi"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3919,21 +3907,21 @@ msgid "Privileges"
msgstr "Privilegiji"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operacije"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Sledenje"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3950,16 +3938,16 @@ msgstr "Sprožilci"
msgid "Database seems to be empty!"
msgstr "Zbirka podatkov se zdi prazna!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Poizvedba"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rutina"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3967,16 +3955,16 @@ msgstr "Rutina"
msgid "Events"
msgstr "Dogodki"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Oblikovalnik"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Osrednji stolpci"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3984,38 +3972,38 @@ msgstr "Osrednji stolpci"
msgid "Databases"
msgstr "Zbirke podatkov"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Uporabniki"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Dvojiški dnevnik"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Podvojevanje"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Spremenljivke"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Nabori znakov"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Vtičniki"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Pogoni"
@@ -4046,7 +4034,7 @@ msgstr[1] "Vstavil sem %1$d vrstici."
msgstr[2] "Vstavil sem %1$d vrstice."
msgstr[3] "Vstavil sem %1$d vrstic."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4722,12 +4710,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Naštevanje, izbrano s seznama določenih vrednosti"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Največja velikost: %s %s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4738,118 +4726,114 @@ msgstr "Največja velikost: %s %s"
msgid "MySQL said: "
msgstr "MySQL je vrnil: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Razloži stavek SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Preskoči razlago stavka SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr "Analiziraj explain pri %s"
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Brez kode PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Ustvari kodo PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Uredi v vrstici"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "ned"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y ob %H.%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dni, %s ur, %s minut in %s sekund"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Manjkajoč parameter:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Preskoči na zbirko podatkov \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Kliknite za preklop"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Prebrskajte svoj računalnik:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Izberite iz mape za nalaganje na spletnem strežniku %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Imenik, ki ste ga določili za nalaganje, ni dosegljiv."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Nobene datoteke ni za naložiti!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Izprazni"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Izvedi"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Natisni"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Ustvarjeno"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Zadnjič posodobljeno"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Zadnjič pregledano"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Začetna vrstica:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Iskanje:"
@@ -4872,13 +4856,13 @@ msgstr "Uporabi to vrednost"
msgid "Rows"
msgstr "Vrstic"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Podatki"
@@ -5131,7 +5115,6 @@ msgid "display column"
msgstr "prikazni stolpec"
#: libraries/config.values.php:102
-#| msgid "Welcome to %s"
msgid "Welcome"
msgstr "Dobrodošli"
@@ -5299,7 +5282,7 @@ msgid "Set value: %s"
msgstr "Določi vrednost: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Povrni privzeto vrednost"
@@ -6043,10 +6026,10 @@ msgstr "Prilagodite način brskanja."
msgid "Customize default options."
msgstr "Prilagodite privzete možnosti."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6525,7 +6508,7 @@ msgid "Maximum displayed SQL length"
msgstr "Največja dolžina prikazanega SQL"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Uporabniki ne morejo določiti višje vrednosti"
@@ -6739,33 +6722,41 @@ msgstr "To so povezave Uredi, Kopiraj in Izbriši."
msgid "Where to show the table row links"
msgstr "Kje naj prikažem povezave vrstic tabel"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
"Uporabi naravni vrstni red za razvrščanje tabel in imen zbirk podatkov."
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Naravni vrstni red"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Uporabi samo ikone, samo besedilo ali oboje."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Navigacijska vrstica tabele"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "Uporabi izhod medpomnjenja GZip za povečano hitrost v prenosih HTTP."
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "Izhod medpomnjenja GZip"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6773,19 +6764,19 @@ msgstr ""
"[kbd]SMART[/kbd] – tj. padajoči vrstni red za stolpce vrste TIME, DATE, "
"DATETIME in TIMESTAMP, v naprotnem primeru naraščajoči vrstni red."
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Privzet vrstni red"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Uporabi vztrajne povezave s podatkovnimi zbirkami MySQL."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Vztrajne povezave"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6795,11 +6786,11 @@ msgstr ""
"podatkov Struktura, če katera od tabel, potrebnih za hrambo konfiguracije "
"phpMyAdmin, ni bila najdena."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Manjkajoče tabele hrambe konfiguracije phpMyAdmin"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6807,11 +6798,11 @@ msgstr ""
"Onemogoči privzeto opozorilo, ki se prikaže, če zaznam razliko med knjižnico "
"in strežnikom MySQL."
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Opozorilo razlike med strežnikom in knjižnico"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6819,27 +6810,27 @@ msgstr ""
"Onemogoči privzeto opozorilo, ki se prikaže na strani Struktura, če so imena "
"stolpcev v tabeli rezervirane besede MySQL."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Opozorilo rezerviranih besed MySQL"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Kako prikazati zavihke menija"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Kako prikazati različne povezave dejanj"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Prepreči urejanje stolpcev BLOB in BINARY."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Zaščiti dvojiške stolpce"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6849,104 +6840,104 @@ msgstr ""
"(potrebuje hrambo konfiguracije phpMyAdmin). Če je onemogočeno, se za prikaz "
"zgodovine poizvedb uporabi rutina JavaScript (ki se izgubi ob zaprtju okna)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Trajna zgodovina poizvedb"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Koliko poizvedb je hranjenih v zgodovini."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Dolžina zgodovine poizvedb"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr "Določi, katere funkcije bodo uporabljene za pretvorbo nabora znakov."
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Snemalni pogon"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Med brskanjem po tabelah se razvrščanje vsake tabele ohrani."
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Ohrani razvrščanje tabel"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr "Privzeto razvrščanje za tabele s primarnim ključem."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Privzeto razvrščanje primarnega ključa"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr "Ponovi glave vsakih X celic, [kbd]0[/kbd] dezaktivira to funkcijo."
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Ponovi glave"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Urejanje mreže: sproži dejanje"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Relacijski prikaz"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "Za prikaz Možnosti"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Urejanje mreže: naenkrat shrani vse urejene celice"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Mapa, kamor se lahko na strežnik shranijo izvozi."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Mapa za shranjevanje"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Pustite prazno, če se ne uporablja."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Zaporedje overovitve gostitelja"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Pustite prazno za privzeto."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Pravila overovitve gostitelja"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Dovoli prijave brez gesla"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Dovoli prijavo root"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Časovni pas seje"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -6954,15 +6945,15 @@ msgstr ""
"Določi časovni pas v uporabi; lahko se razlikuje od časovnega pasu na "
"strežniku zbirke podatkov"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "Ime področja HTTP Basic Auth, ki se prikaže med HTTP Auth."
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "Področje HTTP"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -6972,19 +6963,19 @@ msgstr ""
"SweKey[/a] (se ne nahaja v korenski mapi dokumentov; predlagano: /etc/swekey."
"conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "Konfiguracijska datoteka SweKey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Način overovitve za uporabo."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Vrsta overovitve"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -6992,11 +6983,11 @@ msgstr ""
"Pustite prazno, če ne želite podpore [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]zaznamkov[/a]; predlagano: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Tabela zaznamkov"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7004,32 +6995,32 @@ msgstr ""
"Pustite prazno, če ne želite pripomb/vrst MIME stolpcev; predlagano: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Tabela informacij stolpcev"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Stisni povezavo s strežnikom MySQL."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Stisni povezavo"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
"Način povezave s strežnikom; pustite [kbd]tcp[/kbd], če niste prepričani."
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Vrsta povezave"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Geslo krmilnega uporabnika"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7037,11 +7028,11 @@ msgstr ""
"Posebni uporabnik MySQL, konfiguriran z omejenimi dovoljenji; več informacij "
"je na voljo na [a@http://wiki.phpmyadmin.net/pma/controluser]wikiji[/a]."
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Krmilni uporabnik"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7049,11 +7040,11 @@ msgstr ""
"Nadomestni gostitelj, ki ima shrambo konfiguracije; pustite prazno, če "
"želite uporabiti že opredeljen gostitelj."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Krmilni gostitelj"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7063,15 +7054,15 @@ msgstr ""
"pustite prazno, če želite uporabiti privzeta vrata ali že nastavljena vrata "
"v primeru, ko je nadzorni gostitelj enak gostitelju."
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Krmilna vrata"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Skrije zbirke podatkov, ki se ujemajo z običajnim izrazom (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7080,15 +7071,15 @@ msgstr ""
"bugs/2606/]sledilniku hroščev PMA[/a] in[a@http://bugs.mysql."
"com/19588]hroščih MySQL[/a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Onemogoči uporabo INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Skrij zbirke podatkov"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7096,23 +7087,23 @@ msgstr ""
"Pustite prazno, če ne želite podpore zgodovine poizvedb SQL; predlagano: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Tabela zgodovine poizvedb SQL"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Ime gostitelja, kjer teče strežnik MySQL."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Ime gostitelja strežnika"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "Odjavni URL"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7120,15 +7111,15 @@ msgstr ""
"Omeji število nastavitev tabel, ki so shranjene v zbirki podatkov; "
"najstarejši zapisi bodo samodejno odstranjeni."
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Največje število shranjenih nastavitev tabel"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "Tabela shranjenih iskanj QBE"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7136,11 +7127,11 @@ msgstr ""
"Pustite prazno, če ne želite podpore shranjenih iskanj QBE; predlagano: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Tabela osrednjih stolpcev"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7148,15 +7139,15 @@ msgstr ""
"Pustite prazno, če ne želite podpore osrednjih stolpcev; predlagano: "
"[kbd]pma__central_columns[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Poskusi se povezati brez gesla."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Poveži se brez gesla"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7166,30 +7157,30 @@ msgstr ""
"uporabiti dobesedno, npr. uporabite [kbd]'my\\_db'[/kbd] in ne [kbd]'my_db'[/"
"kbd]."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Prikaži samo navedene zbirke podatkov"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Pustite prazno, če ne uporabljate overovitve config."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Geslo za overovitev config"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Pustite prazno, če ne želite podpore sheme PDF; predlagano: "
"[kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF-shema: tabele strani"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7199,22 +7190,22 @@ msgstr ""
"si [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] za vse informacije. "
"Pustite prazno, če ne želite podpore. Predlagano: [kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Ime zbirke podatkov"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Vrata, na katera naj bo strežnik MySQL priključen; pustite prazno za "
"privzeto."
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Vrata strežnika"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7222,11 +7213,11 @@ msgstr ""
"Pustite prazno, če ne želite »vztrajnih« nedavno uporabljenih tabel skozi "
"seje; predlagano: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Nedavno uporabljena tabela"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7234,11 +7225,11 @@ msgstr ""
"Pustite prazno, če ne želite »vztrajnih« priljubljenih tabel skozi seje; "
"predlagano: [kbd]pma__favorite[/kbd]."
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Tabela priljubljenih"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7246,11 +7237,11 @@ msgstr ""
"Pustite prazno, če ne želite podpore [a@http://wiki.phpmyadmin.net/pma/"
"relation]relacijskih povezav[/a]; priporočeno: [kbd]pma__relation[/kbd]."
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Relacijska tabela"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7258,32 +7249,32 @@ msgstr ""
"Oglejte si [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]vrste "
"overovitev[/a] za primer."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Ime seje signon"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "URL signon"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Vtičnica na katero je povezan strežnik MySQL; pustite prazno za privzeto."
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Vtičnica strežnika"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Omogoči SSL za povezavo s strežnikom MySQL."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Uporabi SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7291,11 +7282,11 @@ msgstr ""
"Pustite prazno, če ne želite podpore sheme PDF; predlagano: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Shema PDF in Designer: koordinate tabel"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7303,11 +7294,11 @@ msgstr ""
"Tabela za opisovanje prikaznih stolpcev; pustite prazno, če ne želite "
"podpore; predlagano: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Tabela prikaznih stolpcev"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7315,11 +7306,11 @@ msgstr ""
"Pustite prazno, če ne želite »vztrajnih« nastavitev uporabniškega vmesnika "
"tabel skozi seje; predlagano: [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Tabela nastavitev uporabniškega vmesnika"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7327,11 +7318,11 @@ msgstr ""
"Ali naj se stavek DROP DATABASE IF EXISTS doda kot prva vrstica v dnevnik "
"pri ustvarjanju zbirke podatkov."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Dodaj DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7339,11 +7330,11 @@ msgstr ""
"Ali naj se stavek DROP TABLE IF EXISTS doda kot prva vrstica v dnevnik pri "
"ustvarjanju tabele."
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Dodaj DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7351,21 +7342,21 @@ msgstr ""
"Ali naj se stavek DROP VIEW IF EXISTS doda kot prva vrstica v dnevnik pri "
"ustvarjanju pogleda."
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Dodaj DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Določi seznam stavkov, ki jih samodejno ustvarjanje uporabi za nove "
"različice."
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Izjave za sledenje"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7373,22 +7364,22 @@ msgstr ""
"Pustite prazno, če ne želite podpore sledenja poizvedb SQL; predlagano: "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Tabela sledenja poizvedb SQL"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
"Ali naj mehanizem sledenja ustvari različice tabel in pogledov samodejno."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Samodejno ustvari različice"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7396,11 +7387,11 @@ msgstr ""
"Pustite prazno, če ne želite hranjenja uporabnikovih nastavitev v zbirki "
"podatkov; predlagano: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Tabela za hranjenje uporabnikovih nastavitev"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7410,11 +7401,11 @@ msgstr ""
"funkcionalnosti nastavljivih menijev; če eno od njiju pustite prazno, boste "
"onemogočiti funkcionalnost; predlagano: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Tabela uporabnikov"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7424,11 +7415,11 @@ msgstr ""
"funkcionalnosti nastavljivih menijev; če eno od njiju pustite prazno, boste "
"onemogočiti funkcionalnost; predlagano: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Tabela uporabniških skupin"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7436,15 +7427,15 @@ msgstr ""
"Pustite prazno, če ne želite zmožnosti skrivanja in prikazovanja "
"navigacijskih predmetov; predlagano: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Skriti predmeti navigacijskega drevesa"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Uporabnik za overovitev config"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7452,19 +7443,19 @@ msgstr ""
"Uporabniku prijazen opis tega strežnika. Pustite prazno, če se naj namesto "
"tega prikaže ime gostitelja."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Razširjeno ime tega strežnika"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "Ali se naj uporabniku prikaže gumb \"prikaži vse (vrstice)\"."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Dovoli prikaz vseh vrstic"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7474,81 +7465,81 @@ msgstr ""
"kbd], saj je geslo vgrajeno v konfiguracijsko datoteko; to ne omejuje "
"možnosti izvedbe enakega ukaza neposredno."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Pokaži obrazec za spremembo gesla"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Pokaži obrazec za ustvarjanje zbirke podatkov"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr "Prikaži ali skrij stolpec, ki prikazuje pripombe vseh tabel."
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr "Prikaži pripombe tabele"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Prikaži ali skrij stolpec, ki prikazuje časovni žig nastanka vseh tabel."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Prikaži časovni žig nastanka"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Prikaži ali skrij stolpec, ki prikazuje časovni žig zadnje spremembe vseh "
"tabel."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Prikaži časovni žig zadnje spremembe"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Prikaži ali skrij stolpec, ki prikazuje časovni žig zadnjega preverjanja "
"vseh tabel."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Prikaži časovni žig zadnjega preverjanja"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
"Določa ali naj bodo v načinu urejanja/vstavljanja prikazane vrste polj."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Pokaži vrste polj"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Prikaže polja funkcij v načinu urejanja/vstavljanja."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Prikaži polja funkcij"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Naj prikažem namig ali ne."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Prikaži namig"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7556,54 +7547,54 @@ msgstr ""
"Prikaže povezavo do podatkov [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Prikaži povezavo phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Prikaži podrobne informacije o strežniku MySQL"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
"Določi, ali se naj poizvedbe SQL, ki jih ustvari phpMyAdmin, prikažejo."
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Pokaži poizvedbe SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "Določa, ali naj polje s poizvedbo ostane na zaslonu po njeni izvedbi."
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Ohrani polje poizvedbe"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Dovoli prikaz statistike zbirke podatkov in tabele (npr. poraba prostora)."
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Pokaži statistiko"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Označi uporabljene tabele in omogoči prikaz zbirk podatkov z zaklenjenimi "
"tabelami."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Preskoči zaklenjene tabele"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7611,11 +7602,11 @@ msgstr ""
"Onemogoči privzeto opozorlo, ki se prikaže na glavni strani, če je zaznan "
"Suhosin."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Opozorilo Suhosin"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 "
@@ -7625,11 +7616,11 @@ msgstr ""
"nastavitve PHP session.gc_maxlifetime manjša kot vrednost "
"`LoginCookieValidity`."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "Opozorilo o veljavnost prijavnega piškotka"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7637,11 +7628,11 @@ msgstr ""
"Velikost besedilnega polja (stolpci) v načinu urejanja; vrednost bo povečana "
"za polja poizvedb SQL (*2)."
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Stolpcev besedilnega polja"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7649,31 +7640,31 @@ msgstr ""
"Velikost besedilnega polja (vrstice) v načinu urejanja; vrednost bo povečana "
"za polja poizvedb SQL (*2)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Vrstic besedilnega polja"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr "Naslov okna brskalnika, ko je izbrana zbirka podatkov."
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Naslov okna brskalnika, ko je ni izbrano nič."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Privzeti naslov"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "Naslov okna brskalnika, ko je izbran strežnik."
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "Naslov okna brskalnika, ko je izbrana tabela."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7684,27 +7675,27 @@ msgstr ""
"navaja, da naj phpMyAdmin zaupa glavi HTTP_X_FORWARDED_FOR (X-Forwarded-For) "
"prihajajoči iz proxyja 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Seznam zaupanja vrednih proxyjev za sprejetje/zavrnitev IP"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr "Mapa na strežniku, kamor lahko naložite datoteke za uvoz."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Mapa za nalaganje"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Dovoli iskanje po celotni zbirki podatkov."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Uporabi iskanje po zbirki podatkov"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7712,26 +7703,26 @@ msgstr ""
"Ko je onemogočeno, uporabniki ne morejo nastaviti katere koli od spodnjih "
"možnosti, ne glede na potrditveno polje na desni."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Omogoči zavihek Razvijalec v nastavitvah"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Preveri za najnovejšo različico"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "Omogoča preverjanje najnovejše različice na glavni strani phpMyAdmin."
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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 "Preverjanje različice"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7743,11 +7734,11 @@ msgstr ""
"nameščen phpMyAdmin, nima neposredne povezave z medmrežjem. Oblika je: "
"»imegostitelja:številkavrat«."
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "URL proxyja"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7757,19 +7748,19 @@ msgstr ""
"navedete uporabniško ime, se bo izvedla overitev Basic Authentication. Druge "
"vrste overitve trenutno niso podprte."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Uporabniško ime proxyja"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "Geslo za overitev s proxyjem."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Geslo proxyja"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7777,35 +7768,35 @@ msgstr ""
"Omogoči stiskanje [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
"za posege uvoza in izvoza."
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Vnesite vaš javni ključ storitve reCaptcha vaše domene."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Javni ključ za reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Vnesite vaš zasebni ključ storitve reCaptcha vaše domene."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Zasebni ključ za reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "Izberite privzeto dejanje za pošiljanje poročil o napakah."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Pošlji poročila o napakah"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7813,11 +7804,11 @@ msgstr ""
"Poizvedbe izvede pritisk na Enter (namesto Ctrl+Enter). Nove vrstice lahko "
"vstavite s Shift+Enter."
-#: libraries/config/messages.inc.php:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr "Enter izvede poizvedbe v konzoli"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7825,7 +7816,7 @@ msgstr ""
"Omogoči način ničelne konfiguracije, ki omogoča, da phpMyAdmin samodejno "
"nastavi hrambene tabele konfiguracije."
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Omogoči način ničelne konfiguracije"
@@ -7851,44 +7842,44 @@ msgstr "Overitev s HTTP"
msgid "Signon authentication"
msgstr "Overitev s signon"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV z uporabo LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Preglednica OpenDocument"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Hitro"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Po meri"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Možnosti izvoza zbirke podatkov"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV za MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Besedilo OpenDocument"
@@ -13610,15 +13601,31 @@ msgstr "Uporaba zaznamka \"%s\" kot privzeto poizvedbo med brskanjem."
msgid "Showing as PHP code"
msgstr "Prikazovanje kot koda PHP"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Trenutna izbira ne vsebuje unikatnega stolpca. Možnosti urejanja mreže, "
"potrditvena polja, Uredi, Kopiraj in Izbriši niso na voljo."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Trenutna izbira ne vsebuje unikatnega stolpca. Možnosti urejanja mreže, "
+"potrditvena polja, Uredi, Kopiraj in Izbriši niso na voljo."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Težave z indeksi tabele `%s`"
@@ -14879,6 +14886,10 @@ msgstr "Pripomba:"
msgid "Drag to reorder"
msgstr "Povlecite za preureditev"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Začetna vrstica:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Izberite stolpce (vsaj enega):"
diff --git a/po/sq.po b/po/sq.po
index f50e125f48..3bbdf40e84 100644
--- a/po/sq.po
+++ b/po/sq.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-05-03 16:39+0200\n"
"Last-Translator: Arben Çokaj \n"
"Language-Team: Albanian %s:"
msgstr "SQL pyetsori në databazë %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Dërgo pyetsor"
@@ -3426,7 +3427,7 @@ msgstr "Aktualizo faqeruajtësin"
msgid "Delete bookmark"
msgstr "Fshij faqeruajtësin"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3434,19 +3435,19 @@ msgstr ""
"Serveri nuk përgjigjet (ose foleja e serverit lokal nuk është konfiguruar "
"saktë)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Serveri nuk përgjigjet."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Ju lutem, kontrollo privilegjet e drejtorisë që përmban databazën."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Detajet…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Lidhja për përdoruesin e kontrollit, siç përcaktohet në konfigurimin tuaj "
@@ -3488,9 +3489,9 @@ msgstr[0] "%1$s përkim në %2$s"
msgstr[1] "%1$s përkime në %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3544,28 +3545,28 @@ msgstr "Radhët e filterit"
msgid "Search this table"
msgstr "Kërko këtë tabelë"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Fillo"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Përpara"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Tjetër"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Fund"
@@ -3574,8 +3575,9 @@ msgstr "Fund"
msgid "All"
msgstr "Të gjithë"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Numri i radhëve:"
@@ -3673,16 +3675,16 @@ msgid "Query took %01.4f seconds."
msgstr "Pyetsori mori %01.4f sekonda."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Me të zgjedhur:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3690,7 +3692,7 @@ msgstr "Me të zgjedhur:"
msgid "Check All"
msgstr "Shënjo të gjitha"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Shfaq printimin"
@@ -3786,11 +3788,11 @@ msgstr "Git mungon informacioni!"
msgid "Open new phpMyAdmin window"
msgstr "Hap një dritare të re phpMyAdmin"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Kliko mbi shirit për të lëvizur në krye të faqes"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Javascript duhet të aftësohet për të kaluar këtë pikë!"
@@ -3854,8 +3856,8 @@ msgstr "Çelësi primar është fshirë."
msgid "Index %s has been dropped."
msgstr "Indeksi %s është fshirë."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3873,7 +3875,7 @@ msgstr ""
"hiqet."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Serveri"
@@ -3885,16 +3887,16 @@ msgid "View"
msgstr "Shfaq"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3906,10 +3908,10 @@ msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3917,19 +3919,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Kërko"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3938,7 +3940,7 @@ msgid "Insert"
msgstr "Fut"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3947,21 +3949,21 @@ msgid "Privileges"
msgstr "Privilegjet"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Veprime"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Gjurmim"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3978,16 +3980,16 @@ msgstr "Shkrehësit"
msgid "Database seems to be empty!"
msgstr "Databaza duket se është e zbrazët!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Pyetsori"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rutinat"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3995,16 +3997,16 @@ msgstr "Rutinat"
msgid "Events"
msgstr "Ngjarjet"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Dizajner"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Kolonat qendrore"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4012,38 +4014,38 @@ msgstr "Kolonat qendrore"
msgid "Databases"
msgstr "Databazat"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Përdoruesit"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Regjistër (log) binar"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replikimi"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variablat"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Karakteret"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Shtojcat (plugins)"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Makinat"
@@ -4068,7 +4070,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d radhë e futur."
msgstr[1] "%1$d radhë të futura."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4741,12 +4743,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Një numërim, i zgjedhur nga lista e vlerave të përcaktuara"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Maks: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4757,118 +4759,114 @@ msgstr "Maks: %s%s"
msgid "MySQL said: "
msgstr "MySQL tha: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Sqaro SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Shmang sqarimin SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Pa kod PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Krijo kod PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Korrigjo në linjë"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Die"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y në %I:%M %p"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s ditë, %s orë, %s minuta dhe %s sekonda"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Parametri që mungon:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Hidhu tek databaza \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funksionaliteti %s është ndikuar nga një defekt i njohur, shiko %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Kliko për të nyjëzuar"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Shfleto kompjuterin:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Zgjedh nga drejtoria e ngarkimit %s të ueb serverit:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Dosja që keni zgjedhur për ngarkim nuk mund të arrihet."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Nuk ka file për ngarkim!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Zbraz"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Ekzekuto"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Printo"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Krijim"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Aktualizimi i fundit"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Kontrolli i fundi"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Radha e fillimit:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Kërko:"
@@ -4891,13 +4889,13 @@ msgstr "Përdor këtë vlerë"
msgid "Rows"
msgstr "Radhët"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Të dhëna"
@@ -5327,7 +5325,7 @@ msgid "Set value: %s"
msgstr "Vendos vlerën: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Rivendos vlerën standarde"
@@ -6084,10 +6082,10 @@ msgstr "Përshtat mënyrën e shfletimit."
msgid "Customize default options."
msgstr "Përshtat opsionet e parazgjedhura."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6567,7 +6565,7 @@ msgid "Maximum displayed SQL length"
msgstr "Gjatësia maksimale SQL e shfaqur"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Përdoruesit nuk mund të vendosin një vlerë më të lartë"
@@ -6781,34 +6779,42 @@ msgstr "Këto janë lidhjet Korrigjo, Kopjo dhe Fshij."
msgid "Where to show the table row links"
msgstr "Ku tregohen lidhjet radhët e tabelës"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
"Përdor renditje natyrale për klasifikimin e emrave të tabelës dhe databazës."
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Renditja natyrale"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Përdor vetëm ikona, vetëm text ose të dyja."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Linja e navigimit të tabelës"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"Përdor rezultatin e zbutjes GZip, për rritur shpejtësië në tranferuesit HTTP."
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip stimulimi i produktit"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6816,19 +6822,19 @@ msgstr ""
"[kbd]SMART[/kbd] - dmth. renditje zbritëse për kolonat e tipit TIME, DATE, "
"DATETIME dhe TIMESTAMP, përndryshe rendiktje ngritëse."
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Mënyrë standarde e renditjes"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Përdor lidhje të qëndrueshme për tek databazat MySQL."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Lidhjet e vazhdueshme"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6838,11 +6844,11 @@ msgstr ""
"databazës Struktura, nëse ndonjë nga tabelat e kërkuara për ruajtjen e "
"konfigurimit të phpMyAdmin nuk mund të gjendet."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Mungojnë tabelat e ruajtjes së konfigurimit të phpMyAdmin"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6850,11 +6856,11 @@ msgstr ""
"Pasivizo paralajmërimin standard që shfaqet, nëse është zbuluar një dallim "
"në mes të librarisë MySQL dhe serverit."
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Paralajmërimi i ndryshimit server/librari"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6862,27 +6868,27 @@ msgstr ""
"Pasivizon paralajmërimin standard që është shfaqur në faqen Struktura, nëse "
"emrat e kolonës në një tabelë janë fjalë të rezervuara MySQL."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "MySQL paralajmërim fjale e rezervuar"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Si të shfaqen tabelorët e menysë"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Si të shfaqen lidhjet e veprimeve të ndryshme"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Moslejo kolona BLOB dhe BINARY nga korrigjimi."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Mbro kolonat binare"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6892,106 +6898,106 @@ msgstr ""
"konfigurimit phpMyAdmin). Nëse është pasiv, ky përdor JS-rutinat për të "
"shfaqur historinë e pyetsorit (humbet me mbylljen e dritares)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Historia e pyetsorit permanent"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Sa pyetsorë do të mbahen në histori."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Gjatësia e historisë së pyetsorit"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
"Zgjedh cilat funksione do të përdoren për konvertimin e setit të karaktereve."
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Makinë regjistrimi"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Kur shfleton tabelat, klasifikimi i çdo tabele kujtohet."
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Kujto klasifikimin e tabelës"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
"Renditja e klasifikimit të paracaktuar për tabelat me një çelës primar."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Renditja e paracaktuar e klasifikimit të çelësit primar"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr "Përsërit kokat për çdo X qeliza, [kbd]0[/kbd] e pasivizon këtë tipar."
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Përsërit kokat"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Korrigjim i rrjetës: veprim shkrehës"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Shfaqje relacionale"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "Për opsionet e shfaqjes"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Korrigjim i rrjetës: ruaj të gjithë qelizat e korrigjuara menjëherë"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Drejtoria ku eksportet mund të ruhen në server."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Drejtoria e ruajtjes"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Lëre të zbrazët nëse nuk përdoret."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Renditja e autorizimit të hostit (pritësit)"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Lëre të zbrazët për standardet."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Rregullat e autorizimit të hostit (pritësit)"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Lejo hyrjet pa fjalëklalim"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Lejo hyrjen në rrënjë (root)"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Zona kohore e sesionit"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -6999,17 +7005,17 @@ msgstr ""
"Vendos zonën kohore efektive; ndoshta të ndryshme me atë që jepet nga "
"serveri i databazës suaj"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
"Emri bazë Auth Realm (fushë autent) HTTP, që shfaqet kur bën HTTP Auth "
"(autent)."
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "Fusha HTTP"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7019,19 +7025,19 @@ msgstr ""
"pajisjeve[/a] (nuk është lokalizuar në rrënjën e dokumentit; sugjerohet: /"
"etc/swekey.conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey fili konfig"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Metoda e autentifikimit që përdoret."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Tipi i autentifikimit"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7039,11 +7045,11 @@ msgstr ""
"Lëre të zbrazët për asnjë mbështetje [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]faqeruajtësi[/a], sugjerohet: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Tabela e faqerojtësit"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7051,31 +7057,31 @@ msgstr ""
"Lëre të zbrazët për asnjë kolonë të tipeve komente/mime, sugjerohet: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Tabela e informacionit të kolonës"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Lidhje e kompresuar për tek serveri MySQL."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Kompreso lidhjen"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "Si të lidheni me serverin, mbaj [kbd]tcp[/kbd] nëse jeni i pasigurtë."
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Tipi i lidhjes"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Fjalëkalimi i përdoruesit të kontrollit"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7084,11 +7090,11 @@ msgstr ""
"tepër informacion të vlefshëm në [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Përdoruesi i kontrollit"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7096,11 +7102,11 @@ msgstr ""
"Një host (pritës) alternativ për të mbajtur ruajtjen e konfigurimit; lëre të "
"zbrazët për të përdorur pritësin (host) e përcaktuar."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Hosti (pritësi) i kontrollit"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7111,15 +7117,15 @@ msgstr ""
"portën e përcaktuar ndërkohë, nëse pritësi i kontrollit është i njëjtë me "
"pritësin."
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Porta e kontrollit"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Fsheh databazat që përkojnë me shprehjet e rregulta (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7128,15 +7134,15 @@ msgstr ""
"bugs/2606/]PMA bug tracker[/a] dhe [a@http://bugs.mysql.com/19588]MySQL "
"Bugs[/a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Pasivizo përdorimin e INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Fsheh databazat"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7144,23 +7150,23 @@ msgstr ""
"Lëre të zbrazët për asnjë mbështetje të historisë së pyetsorit SQL, "
"sugjerohet: [kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL tabela e historisë së pyetsorit"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Emri i pritësit (hostname) ku serveri MySQL funksionon."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Emri i pritësit të serverit"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL e daljes"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7168,15 +7174,15 @@ msgstr ""
"Kufizon numrin e preferencave të tabelës, të cilat janë ruajtur në databazë, "
"regjistrimet më të vjetra largohen automatiksht."
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Numri maksimal i preferencave të tabelave për të ruajtur"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "QBE ruajti tabelën e kërkimit"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7184,11 +7190,11 @@ msgstr ""
"Lëre të zbrazët për asnjë mbështetje kërkimi të QBE të ruajtur, sugjerohet: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Tabela e kolonave qendrore"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7196,15 +7202,15 @@ msgstr ""
"Lëre të zbrazët për jo mbështetje të kolonave qendrore, sugjerohet: "
"[kbd]pma__central_columns[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Ptovo të lidhesh pa fjalëkalim."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Lidhu pa fjalëkalim"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7214,30 +7220,30 @@ msgstr ""
"të përdorni instancat e tyre literale, dmth. përdor [kbd]'my\\_db'[/kbd] dhe "
"jo [kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Shfaq vetëm databazat e renditura"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Lëre të zbrazët nëse nuk përdor autent e konfig."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Fjalëkalimi për konfig autent"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Lëre të zbrazët për asnjë mbështetje të skemës PDF, sugjerohet: "
"[kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF skema: tabela e faqeve"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7247,22 +7253,22 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] për informacion më të "
"plotë. Lëre të zbrazët për mos mbështetje. Sugjerohet: [kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Emri i databazës"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Porta në të cilën serveri MySQL është duke dëgjuar, lëre të zbrazët për "
"standardin."
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Porta e serverit"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7270,11 +7276,11 @@ msgstr ""
"Lëre të zbrazët për asnjë tabelë të \"përhershme\" të përdorur së fundi "
"përmes sesionit, sugjerohet: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Tabela e përdorur së fundi"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7282,11 +7288,11 @@ msgstr ""
"Lëre të zbrazët për jo tabela të preferuara të \"përhershme\" gjatë "
"sesionit, sugjerohet: [kbd]pma__favorite[/kbd]."
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Tabela e preferuar"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7295,11 +7301,11 @@ msgstr ""
"relation]relation-links[/a] (lidhje-relacioni), sugjerohet: "
"[kbd]pma__relation[/kbd] (relacion_pma)."
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Tabela e relacionit"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7307,33 +7313,33 @@ msgstr ""
"Shiko [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipet e "
"autentifikimit[/a] për një shembull."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Emri i sesionit të hyrjes"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "URL e hyrjes"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Fole në të cilën serveri MySQL është duke dëgjuar, lëre të zbrazët për "
"standard."
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Foleja e serverit"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Aftëso SSL për lidhje me serverin MySQL."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Përdor SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7341,11 +7347,11 @@ msgstr ""
"Lëre të zbrazët për asnjë mbështetje të skemës PDF, sugjerohet: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Dizajneri dhe skema PDF: koordinatat e tabelës"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7353,11 +7359,11 @@ msgstr ""
"Tabela që përshkruan kolonat e shfaqjes, lëre të zbrazët për asnjë "
"mbështetje; sugjerohet: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Shfaq tabelën e kolonave"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7365,11 +7371,11 @@ msgstr ""
"Lëre të zbrazët për preferenca tabelash UI jo të \"përhershme\" përrmes "
"sesionit, sugjerohet: [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "UI tabelë e preferencave"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7377,11 +7383,11 @@ msgstr ""
"Nëse një deklaratë DROP DATABASE IF EXISTS (fshij databazën nëse ekziston) "
"do të shtohet si linjë e parë në regjistër (log), kur krijon një databazë."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Shto DROP DATABASE (fshij databazën)"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7389,11 +7395,11 @@ msgstr ""
"Nëse një deklaratë DROP TABLE IF EXISTS (fshij tabelën nëse ekziston) do të "
"shtohet si linjë e parë tek regjistri (log) kur krijon një tabelë."
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Shto DROP TABLE (fshij tabelën)"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7401,20 +7407,20 @@ msgstr ""
"Nëse një deklaratë DROP VIEW IF EXISTS (fshij pamjen nëse ekziston) do të "
"shtohet si linjë e parë tek regjistri (log) kur krijon një pamje."
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Shto DROP VIEW (fshij pamjen)"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Përcakton listën e deklaratave, që auto-krijimi përdor për versionet e reja."
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Deklaratat që gjurmohen"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7422,11 +7428,11 @@ msgstr ""
"Lëre të zbrazët për asnjë mbështetje gjurmimi të pyetsorit SQL, sugjerohet: "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL tabela e gjurmimit të pyetsorit"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7434,11 +7440,11 @@ msgstr ""
"Nëse mekanizmi i ndjekjes krijon versione për tabelat dhe shfaqet "
"automatikisht."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Krijo automatikisht versionet"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7446,11 +7452,11 @@ msgstr ""
"Lëre të zbrazët për asnjë ruajtje të preferencave të përdoruesit në "
"databazë, sugjerohet: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Tabela e ruajtjes së preferencave të përdoruesit"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7460,11 +7466,11 @@ msgstr ""
"tiparin e menyve të konfigurueshme; duke lënë njërën prej tyre të zbrazët, "
"do e pasivizoni këtë tipar, sugjerohet: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Tabela e përdoruesve"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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 +7480,11 @@ msgstr ""
"tiparin e menyve të konfigurueshme; duke lënë njërën prej tyre të zbrazët, "
"do e pasivizoni këtë tipar, sugjerohet: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Tabela e grupit të përdoruesve"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7486,15 +7492,15 @@ msgstr ""
"Lëre të zbrazët për të pasivizuar tiparin, që fsheh dhe shfaq njësitë e "
"navigimit, sugjerohet: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Tabela e njësive të navigimit të fshehtë"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Përdoruesi për config auth"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7502,20 +7508,20 @@ msgstr ""
"Një përshkrim përdoruesi-miqësor i këtij serveri. Lëre të zbrazët për të "
"shfaqur emrin e pritësit në vend të saj."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Emri fjalëshumë i këtij serveri"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
"Nëse një përdorues do të shfaqte një buton \"shfaq të gjitha (radhët)\"."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Lejo për të shfaqur të gjitha radhët"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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,15 +7532,15 @@ msgstr ""
"në filin e konfigurimit; kjo nuk e kufizon aftësinë për të ekzekutuar të "
"njëjtën komandë direkt."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Shfaq formularin e ndryshimit të fjalëkalimit"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Shfaq formularin krijo databazë"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables."
@@ -7543,45 +7549,45 @@ msgstr ""
"Shfaq ose fsheh një kolonë nga shfaqja e Krijimit të vulës kohore për të "
"gjitha tabelat."
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Komentet e tabelës"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Shfaq ose fsheh një kolonë nga shfaqja e Krijimit të vulës kohore për të "
"gjitha tabelat."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Shfaq krijimin e vulës kohore"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Shfaq ose fsheh një kolonë nga shfaqja e Aktualizimit të fundit të vulës "
"kohore për të gjithë tabelat."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Shfaq vulën kohore të aktualizuar së fundi"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Shfaq ose fsheh një kolonë nga shfaqja e Kontrollit të fundit të vulës "
"kohore për të gjithë tabelat."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Shfaq vulën kohore të kontrolluar së fundi"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7589,27 +7595,27 @@ msgstr ""
"Përcakton nëse fushat e shkrimit duhet ose jo të shfaqet fillimisht në "
"mënyrën korrigjo/fut."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Shfaq tipet e fushave"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Shfaq fushat e funksionit në mënyrën korrigjo/fut."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Shfaq fushat e funksioneve"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Nëse e tregon , apo jo."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Shfaq idenë (hint)"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7617,57 +7623,57 @@ msgstr ""
"Shfaq lidhjen tek rezultati [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Shfaq lidhjen phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Shfaq informacionin e detajuar të serverit MySQL"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
"Përcakton nëse pyetsorët SQL të gjeneruara nga phpMyAdmin duhet të shfaqen."
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Shfaq pyetsorët SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
"Përcakton nëse kutia e pyetsorit duhet të qëndrojë në ekran pas dorëzimit të "
"saj."
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Mbaj kutinë e pyetsorit"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Lejo për të shfaqur databazën dhe tabelën e statistikave (psh. përdorimi i "
"hapësirës)."
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Shfaq statistikat"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Shënjo tabelat e përdorura dhe bëje të mundur shfaqjen e databazave me "
"tabela të kyçura."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Shmang tabelat e kyçura"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7675,11 +7681,11 @@ msgstr ""
"Pasivizo paralajmërimin standard, që shfaqet në faqen kryesore, nëse Suhosin "
"është zbuluar."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin paralajmërim"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 "
@@ -7689,11 +7695,11 @@ msgstr ""
"vlera e rregullimit PHP session.gc_maxlifetime është më e vogël se vlera e "
"`LoginCookieValidity` (vlefshmëria e hyrjes së gatimit)."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "Paralajmërimi i vlefshmërisë së gatimit (cookie) të hyrjes"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7701,11 +7707,11 @@ msgstr ""
"Madhësia e zonës së tekstit (kolonave) në mënyrën e korrigjimit, kjo vlerë "
"do të theksohet për zonat e tekstit të pyetsorit SQL (*2)."
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Kolonat e zonës së tekstit"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7713,31 +7719,31 @@ msgstr ""
"Madhësia e zonës së tekstit (radhët) në mënyrën e korrigjimit, kjo vlerë "
"është e theksuar për zonat e tekstit të pyetsorit SQL (*2)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Radhët e zonës së tekstit"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr "Titulli i dritares së shfletuesit, kur është zgjedhur një databazë."
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Titulli i dritares së shfletuesit, kur nuk është zgjedhur asgjë."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Titulli standard"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "Titulli i dritares së shfletuesit, kur është zgjedhur një server."
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "Titulli i dritares së shfletuesit, kur është zgjedhur një tabelë."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7749,27 +7755,27 @@ msgstr ""
"Forwarded-For), që vjen nga proksi 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Lista e proksi të besuara për IP lejo/moho"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr "Drejtoria në serverin ku mund të ngarkoni filet për import."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Dosja e ngarkimit"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Lejo për kërkim në brendësi të të gjithë databazës."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Përdor kërkimin e databazës"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7777,27 +7783,27 @@ msgstr ""
"Kur pasivizohet, përdoruesit nuk mund të vendosin ndonjë nga opsionet më "
"poshtë, pavarësisht kutisë së kontrollit në të djathtë."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Aftëso tabelorin Zhvilluesi tek rregullimet"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Kontrollo për versionin e fundit"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
"Aftëson kontrollin për versionin e fundit në faqen kryesore phpMyAdmin."
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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 "Kontroll i versionit"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:810
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 +7815,11 @@ msgstr ""
"kjo, nëse serveri ku është instaluar phpMyAdmin nuk ka hyrje direkte në "
"internet. Formati është: \"hostname:portnumber\"."
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "URL proksi"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7823,19 +7829,19 @@ msgstr ""
"kryer autentifikimi. Nëse një emër nuk mbështetet, Autentifikimi bazë do të "
"kryhet. Asnjë lloj tjetër autentifikimi nuk mbështetet aktualisht."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Emri i përdoruesit proksi"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "Fjalëkalimi për autentifikimin (vërtetimin) me proksi (prokurë)."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Fjalëkalimi proksi"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7843,35 +7849,35 @@ msgstr ""
"Aftëso kompresimin [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
"për veprimet e importit dhe eksportit."
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Fut çelësin tuaj publik për shërbimin e domainit tuaj reCaptcha."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Çelës publik për reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Fut çelësin tuaj privat për shërbimin e domainit tuaj reCaptcha."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Çelës privat për reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "Zgjedh veprimin e parazgjedhur, kur dërgoni raportet e gabimit."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Dërgo raportet e gabimit"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7879,11 +7885,11 @@ msgstr ""
"Pyetsorët ekzekutohen duke shtypur Enter (në vend të Ctrl+Enter). Linja të "
"reja mund të futen me Shift+Enter."
-#: libraries/config/messages.inc.php:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr "Enter ekzekuton pyetsorën në konsole"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7891,7 +7897,7 @@ msgstr ""
"Aktivizo mënyrën e Konfigurimit Zero, e cila ju lejon të instaloni "
"automatikisht tabelat e ruajtjes së konfigurimit të phpMyAdmin."
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Aftëso mënyrën e konfigurimit zero"
@@ -7917,44 +7923,44 @@ msgstr "Autentifikimi HTTP"
msgid "Signon authentication"
msgstr "Autentifikimi i hyrjes"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV përdor LOAD DATA (ngarko të dhëna)"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "HapDokument Excel"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Shpejt"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Përshtat"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Opsionet e eksportit të databazës"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV për MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "HapDokument Tekst"
@@ -13727,15 +13733,31 @@ msgstr "Përdorimi i faqerojtësit \"%s\" si shfletues pyetsori standard."
msgid "Showing as PHP code"
msgstr "Shfaqën si kod PHP"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Zgjedhja aktuale nuk përmban një kolonë unike. Tiparet korrigjo rrjetën, "
"kuti kontrolli, Korrigjo, Kopjo dhe Fshij nuk janë në vlefshme."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Zgjedhja aktuale nuk përmban një kolonë unike. Tiparet korrigjo rrjetën, "
+"kuti kontrolli, Korrigjo, Kopjo dhe Fshij nuk janë në vlefshme."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemet me indekset e tabelës `%s`"
@@ -15000,6 +15022,10 @@ msgstr "Komenti:"
msgid "Drag to reorder"
msgstr "Tërhiq për të ri-renditur"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Radha e fillimit:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Zgjedh kolonën (së paku një):"
diff --git a/po/sr.po b/po/sr.po
index e249ea2989..2099218a50 100644
--- a/po/sr.po
+++ b/po/sr.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-06-08 19:34+0200\n"
"Last-Translator: Nikola Stojaković \n"
"Language-Team: Serbian %s:"
msgstr "SQL упит на бази %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Изврши SQL упит"
@@ -3770,7 +3771,7 @@ msgstr "Приказивање маркера"
msgid "Delete bookmark"
msgstr "Обриши релацију"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3778,21 +3779,21 @@ msgid ""
"configured)."
msgstr "(или прикључак локалног MySQL сервера није исправно подешен)"
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сервер не одговара"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Конекција за controluser-а, онако како је дефинисана у вашој конфигурацији, "
@@ -3838,9 +3839,9 @@ msgstr[1] "%s погодака унутар табеле %s"
msgstr[2] "%s погодака унутар табеле %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3907,16 +3908,16 @@ msgstr "Датотеке"
msgid "Search this table"
msgstr "Претраживање базе"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Почетак"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3924,8 +3925,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Претходна"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3933,8 +3934,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "Следећи"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3945,8 +3946,9 @@ msgstr "Крај"
msgid "All"
msgstr "Све"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows:"
@@ -4062,16 +4064,16 @@ msgid "Query took %01.4f seconds."
msgstr "Упит је трајао %01.4f секунди"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Означено:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -4079,7 +4081,7 @@ msgstr "Означено:"
msgid "Check All"
msgstr "Означи све"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "За штампу"
@@ -4189,11 +4191,11 @@ msgstr "Информације о верзији"
msgid "Open new phpMyAdmin window"
msgstr "Отвори нови phpMyAdmin прозор"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4260,8 +4262,8 @@ msgstr "Примарни кључ је обрисан."
msgid "Index %s has been dropped."
msgstr "Кључ %s је обрисан."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4277,7 +4279,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Сервер"
@@ -4289,16 +4291,16 @@ msgid "View"
msgstr "Поглед"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4310,10 +4312,10 @@ msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4321,19 +4323,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Претраживање"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4342,7 +4344,7 @@ msgid "Insert"
msgstr "Нови запис"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4351,21 +4353,21 @@ msgid "Privileges"
msgstr "Привилегије"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Операције"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4382,16 +4384,16 @@ msgstr "Окидачи"
msgid "Database seems to be empty!"
msgstr "База је изгледа празна!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Упит по примеру"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Рутине"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4400,18 +4402,18 @@ msgstr "Рутине"
msgid "Events"
msgstr "Догађаји"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Дизајнер"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns"
msgstr "Додај/обриши колону"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4419,40 +4421,40 @@ msgstr "Додај/обриши колону"
msgid "Databases"
msgstr "Базе"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "Корисник"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Бинарни дневник"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Репликација"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Променљиве"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Кодне стране"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Складиштења"
@@ -4479,7 +4481,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "Нема одабраних редова"
msgstr[1] "Нема одабраних редова"
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -5133,12 +5135,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Максимална величина: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5149,28 +5151,28 @@ msgstr "Максимална величина: %s%s"
msgid "MySQL said: "
msgstr "MySQL рече: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Објасни SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Прескочи објашњавање SQL-a"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "без PHP кода"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Направи PHP код"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Add new field"
msgctxt "Inline edit query"
@@ -5178,96 +5180,91 @@ msgid "Edit inline"
msgstr "Додај ново поље"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Нед"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. у %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дана, %s сати, %s минута и %s секунди"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Рутине"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Пређи на базу \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Ова функционалност %s је погођена познатом грешком, видите %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "директоријум за слање веб сервера "
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Директоријум који сте изабрали за слање није доступан."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
msgid "There are no files to upload!"
msgstr "Провери табелу"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Испразни"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Штампај"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Направљено"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Последња измена"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Последња провера"
-#: libraries/Util.class.php:4862
-#, fuzzy
-msgid "Start row:"
-msgstr "Статус"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5292,13 +5289,13 @@ msgstr "Користи ову вредност"
msgid "Rows"
msgstr "Редова"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Подаци"
@@ -5757,7 +5754,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6481,10 +6478,10 @@ msgstr "Режим аутоматског опоравка"
msgid "Customize default options."
msgstr "Опције за извоз базе"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6981,7 +6978,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -7203,897 +7200,905 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Промени редослед у табели"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Коментар табеле"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Промени име табеле у "
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "Примарни кључ је управо додат %s."
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Нити поправке"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "Релациона схема"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
msgid "For display Options"
msgstr "Опције за извоз базе"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
#, fuzzy
msgid "Save directory"
msgstr "Основни директоријум података"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Вредност сесије"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
msgid "Authentication method to use."
msgstr "Репликација"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Не могу да се пријавим на MySQL сервер"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
#, fuzzy
msgid "Connection type"
msgstr "Конекције"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Било који домаћин"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Било који домаћин"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
#, fuzzy
msgid "Hide databases"
msgstr "База не постоји"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
#, fuzzy
msgid "Server hostname"
msgstr "назив сервера"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Додај/обриши колону"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Немој да мењаш лозинку"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "назив базе"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
#, fuzzy
msgid "Server port"
msgstr "ИД сервера"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Анализирај табелу"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Променљиве"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
#, fuzzy
msgid "Relation table"
msgstr "Поправи табелу"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
#, fuzzy
msgid "Server socket"
msgstr "Избор сервера"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, fuzzy
#| msgid "The number of fsync() writes done to the log file."
msgid "Enable SSL for connection to MySQL server."
msgstr "Број fsyncs уписа начињених у датотеку дневника."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Приказујем коментаре колоне"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Дефрагментирај табелу"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Име"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Режим аутоматског опоравка"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Користи табеле"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Користи табелу домаћина"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Коментари табеле"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Прикажи информације о PHP-у"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Прикажи статус подређених сервера"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Прикажи отворене табеле"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Прикажи мрежу"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
#, fuzzy
msgid "Show SQL queries"
msgstr "Прикажи комплетне упите"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL упит"
-#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
-msgstr ""
-
-#: libraries/config/messages.inc.php:772
-#, fuzzy
-msgid "Show statistics"
-msgstr "Статистике реда"
-
#: libraries/config/messages.inc.php:773
-msgid ""
-"Mark used tables and make it possible to show databases with locked tables."
+msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
#: libraries/config/messages.inc.php:774
#, fuzzy
+msgid "Show statistics"
+msgstr "Статистике реда"
+
+#: libraries/config/messages.inc.php:775
+msgid ""
+"Mark used tables and make it possible to show databases with locked tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:776
+#, fuzzy
msgid "Skip locked tables"
msgstr "Прикажи отворене табеле"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Додај/обриши колону"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
msgid "Default title"
msgstr "Преименуј базу у"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -8101,53 +8106,53 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
#, fuzzy
msgid "Upload directory"
msgstr "Основни директоријум података"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8155,84 +8160,84 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
msgid "Proxy username"
msgstr "Корисничко име:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Лозинка"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
msgid "Send error reports"
msgstr "ИД сервера"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Enable Zero Configuration mode"
@@ -8258,46 +8263,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV користећи LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Open Document Spreadsheet"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Опције за извоз базе"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV за MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -14353,13 +14358,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Приказ као PHP код"
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем при индексирању табеле `%s`"
@@ -15765,6 +15778,11 @@ msgstr "Коментари"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+msgid "Start row:"
+msgstr "Статус"
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/sr@latin.po b/po/sr@latin.po
index e235e2fa98..e77a43e9bf 100644
--- a/po/sr@latin.po
+++ b/po/sr@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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-03-31 14:25+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Serbian (latin) %s:"
msgstr "SQL upit na bazi %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Izvrši SQL upit"
@@ -3685,7 +3686,7 @@ msgstr "Prikazivanje markera"
msgid "Delete bookmark"
msgstr "Obriši relaciju"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3693,19 +3694,19 @@ msgstr ""
"Nema odgovora sa servera (ili priključak lokalnog servera nije ispravno "
"podešen)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Server ne odgovara."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Konekcija za controluser-a, onako kako je definisana u vašoj konfiguraciji, "
@@ -3750,9 +3751,9 @@ msgstr[1] "%s pogodaka unutar tabele %s"
msgstr[2] "%s pogodaka unutar tabele %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3810,28 +3811,28 @@ msgstr "Filteri"
msgid "Search this table"
msgstr "Pretraživanje baze"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Početak"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Prethodna"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Sledeća"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Kraj"
@@ -3840,8 +3841,9 @@ msgstr "Kraj"
msgid "All"
msgstr "Sve"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Broj redova:"
@@ -3948,16 +3950,16 @@ msgid "Query took %01.4f seconds."
msgstr "Upit je trajao %01.4f sekundi"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Označeno:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3965,7 +3967,7 @@ msgstr "Označeno:"
msgid "Check All"
msgstr "Označi sve"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Za štampu"
@@ -4074,11 +4076,11 @@ msgstr "Informacije o verziji"
msgid "Open new phpMyAdmin window"
msgstr "Otvori novi phpMyAdmin prozor"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4144,8 +4146,8 @@ msgstr "Primarni ključ je obrisan."
msgid "Index %s has been dropped."
msgstr "Indeks %s je obrisan."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4163,7 +4165,7 @@ msgstr ""
"da se ukloni."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -4175,16 +4177,16 @@ msgid "View"
msgstr "Pogled"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4196,10 +4198,10 @@ msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4207,19 +4209,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Pretraživanje"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4228,7 +4230,7 @@ msgid "Insert"
msgstr "Novi zapis"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4237,21 +4239,21 @@ msgid "Privileges"
msgstr "Privilegije"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operacije"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4268,16 +4270,16 @@ msgstr "Okidači"
msgid "Database seems to be empty!"
msgstr "Baza je izgleda prazna!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Upit po primeru"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rutine"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4285,18 +4287,18 @@ msgstr "Rutine"
msgid "Events"
msgstr "Događaji"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Dizajner"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns"
msgstr "Kolone tekstulanih polja"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4304,38 +4306,38 @@ msgstr "Kolone tekstulanih polja"
msgid "Databases"
msgstr "Baze"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Korisnici"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Binarni dnevnik"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replikacija"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Promenljive"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Kodne strane"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Skladištenja"
@@ -4363,7 +4365,7 @@ msgstr[0] "%1$d red umetnut."
msgstr[1] "%1$d redova umetnuto."
msgstr[2] "%1$d redova umetnuto."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -5023,12 +5025,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Maksimalna veličina: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5039,28 +5041,28 @@ msgstr "Maksimalna veličina: %s%s"
msgid "MySQL said: "
msgstr "MySQL reče: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Objasni SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Preskoči objašnjavanje SQL-a"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "bez PHP koda"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Napravi PHP kod"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
@@ -5068,96 +5070,90 @@ msgid "Edit inline"
msgstr "Uredi indeks"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ned"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. u %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dana, %s sati, %s minuta i %s sekundi"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Nedostaje parametar:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Pređi na bazu \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Kliknite da biste zamenili"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Pretražite vaš kompjuter:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
"Izaberi iz direkorijuma otpremljenih datoteka %s na web serveru:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Direktorijum koji ste izabrali za slanje nije dostupan."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no files to upload!"
msgstr "Nema datoteka za otpremanje"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Isprazni"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Izvrši"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Štampaj"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Napravljeno"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Poslednja izmena"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Poslednja provera"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start row"
-msgid "Start row:"
-msgstr "Početni red"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5182,13 +5178,13 @@ msgstr "Koristi ovu vrednost"
msgid "Rows"
msgstr "Redova"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5642,7 +5638,7 @@ msgid "Set value: %s"
msgstr "Postavi vrednost: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Vrati podrazumevanu vrednost"
@@ -6442,10 +6438,10 @@ msgstr "Prilagodi režim pretraživanja"
msgid "Customize default options."
msgstr "Prilagodi podrazumevane opcije"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6993,7 +6989,7 @@ msgid "Maximum displayed SQL length"
msgstr "Maksimalna dužina prikazanog SQL-a"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Korisnici ne mogu da zadaju veću vrednost"
@@ -7246,58 +7242,66 @@ msgstr ""
msgid "Where to show the table row links"
msgstr "Gde da se prikažu linkovi na redove tabele"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
#, fuzzy
#| msgid "Use natural order for sorting table and database names"
msgid "Use natural order for sorting table and database names."
msgstr "Koristi prirodni poredak za sortiranje imena tabela i baza"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Prirodni redosled"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:531
#, fuzzy
#| msgid "Use only icons, only text or both"
msgid "Use only icons, only text or both."
msgstr "Koristi samo ikonice, samo tekst ili oboje"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Komentar tabele"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Podrazumevani redosled sortiranja"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Use persistent connections to MySQL databases."
msgstr "Uspostavi trajne veze sa MySQL bazama"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Trajne veze"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7312,11 +7316,11 @@ msgstr ""
"detaljima strukture baze podataka ako bilo koju od neophodnih tabela za "
"skladištenje phpMyAdmin konfiguracije nije bilo moguće pronaći"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Nedostaju phpMyAdmin skladišne tabele"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7328,11 +7332,11 @@ msgstr ""
"Isključi podrazumevano upozorenje koje se prikazuje ako je mcrypt nedostupan "
"kod autentikacije uz pomoć kukija"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7346,78 +7350,78 @@ msgstr ""
"detaljima strukture baze podataka ako bilo koju od neophodnih tabela za "
"skladištenje phpMyAdmin konfiguracije nije bilo moguće pronaći"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Zaštiti binarne kolone"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Stalna istorija upita"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "Koliko mnogo upita se čuva u istoriji"
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Dužina istorije upita"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
#, fuzzy
#| msgid "Select which functions will be used for character set conversion"
msgid "Select which functions will be used for character set conversion."
msgstr "Izaberite koje funcije će biti korišćene za konverziju seta znakova"
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, fuzzy
#| msgid "When browsing tables, the sorting of each table is remembered"
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Kada pregledate tabele, sortiranje svake tabele je upamćeno"
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Zapamti način sortiranja u tabeli"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Podrazumevani redosled sortiranja"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
#, fuzzy
#| msgid ""
#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@@ -7426,668 +7430,668 @@ msgid ""
msgstr ""
"Ponovi zaglavlje nakon svakih X ćelija, [kbd]0[/kbd] isključuje ovu funkciju"
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Ponovi zaglavlja"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Relacioni prikaz kolone"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "Opcije prikaza servera"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
#, fuzzy
#| msgid "Save all edited cells at once"
msgid "Grid editing: save all edited cells at once"
msgstr "Snimi sve izmenjene ćelije odjednom"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
#, fuzzy
#| msgid "Directory where exports can be saved on server"
msgid "Directory where exports can be saved on server."
msgstr "Direktorijum na serveru u koji izvezeni podaci mogu biti snimljeni"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Snimi direktorijum"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "Ostavi prazno ako se ne koristi"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Redosled autorizacije hostova"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "Ostavi prazno za podrazumevane vrednosti"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Pravila autorizacije hostova"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Dozvoli prijavljivanje bez lozinke"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Dozvoli prijavljivanje root-a"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Vrednost sesije"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication method to use."
msgstr "Podešavanje autentikacije"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Compress connection to MySQL server."
msgstr "Uspostavi trajne veze sa MySQL bazama"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Tip povezivanja"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Kontrolni domaćin"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Control host"
msgid "Control port"
msgstr "Kontrolni domaćin"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Sakrij baze"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Ime servera"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "Kolone tekstulanih polja"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Allow logins without a password"
msgid "Try to connect without password."
msgstr "Dozvoli prijavljivanje bez lozinke"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Naziv baze"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Port na serveru"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Skorašnje korišćena tabela"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Promenljive"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Relaciona tabela"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Server socket"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, fuzzy
#| msgid "The number of failed attempts to connect to the MySQL server."
msgid "Enable SSL for connection to MySQL server."
msgstr "Broj neuspelih pokušaja povezivanja na MySQL server."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Prikaži kolone tabele"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Tabela podešavanja korisničkog interfejsa"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Praćenje komandi"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Automatski kreiraj verzije"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Koristi tabele"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Koristi tabelu domaćina"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Komentari tabele"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Prikaži informacije o PHP-u"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Prikaži status podređenih servera"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Prikaži tipove polja"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
#, fuzzy
#| msgid "Where to show the table row links"
msgid "Whether to show hint or not."
msgstr "Gde da se prikažu linkovi na redove tabele"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Prikaži savet"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Prikaži SQL upite"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Zadrži okvir za upite"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Prikaži statistike"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Preskoči zaključane tabele"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -8099,11 +8103,11 @@ msgstr ""
"Isključi podrazumevano upozorenje koje se prikazuje ako je mcrypt nedostupan "
"kod autentikacije uz pomoć kukija"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -8118,51 +8122,51 @@ msgstr ""
"detaljima strukture baze podataka ako bilo koju od neophodnih tabela za "
"skladištenje phpMyAdmin konfiguracije nije bilo moguće pronaći"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Kolone tekstulanih polja"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Podrazumevani naslov"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -8170,52 +8174,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Pošalji direktorijum"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8223,34 +8227,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "Korisničko ime"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Lozinka"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -8262,55 +8266,55 @@ msgstr ""
"Omogući [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] kompresiju za "
"operacije uvoza i izvoza"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "Port na serveru"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "Izvršeni upiti"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8336,46 +8340,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV koristeći LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Open Document Spreadsheet"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Opcije za izvoz baze"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV za MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -14194,20 +14198,33 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "Prikaz kao PHP kod"
-#: libraries/sql.lib.php:1765
-#, fuzzy
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
#| 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Ova tabela ne sadrži jedinstvenu kolonu. Karakteristike koje se odnose na "
"izmene u gridu, checkbox, Edit, Copy i Delete linkovi može da se desi da ne "
"rade nakon snimanja."
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Ova tabela ne sadrži jedinstvenu kolonu. Karakteristike koje se odnose na "
+"izmene u gridu, checkbox, Edit, Copy i Delete linkovi može da se desi da ne "
+"rade nakon snimanja."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problem pri indeksiranju tabele `%s`"
@@ -15547,6 +15564,12 @@ msgstr "Komentar"
msgid "Drag to reorder"
msgstr "Povucite da bi ste promenili redosled"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start row"
+msgid "Start row:"
+msgstr "Početni red"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Izaberi kolone (najmanje jednu):"
diff --git a/po/sv.po b/po/sv.po
index 033d3d848b..c368eb198d 100644
--- a/po/sv.po
+++ b/po/sv.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-12-29 15:37+0200\n"
"Last-Translator: Anders Jonsson \n"
"Language-Team: Swedish %s:"
msgstr "SQL-fråga i databas %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Skicka fråga"
@@ -3580,7 +3581,7 @@ msgstr "Uppdatera bokmärke"
msgid "Delete bookmark"
msgstr "Ta bort bokmärke"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3588,19 +3589,19 @@ msgstr ""
"Servern svarar inte (eller den lokala serverns socket är inte korrekt "
"konfigurerad)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Servern svarar inte."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Kontrollera privilegierna för katalogen som innehåller databasen."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Detaljer…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Uppkoppling för kontrollanvändare enligt din konfiguration misslyckades."
@@ -3641,9 +3642,9 @@ msgstr[0] "%1$s träff i %2$s"
msgstr[1] "%1$s träffar i %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3699,28 +3700,28 @@ msgstr "Filter"
msgid "Search this table"
msgstr "Sök i denna tabell"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Starta"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Föregående"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Nästa"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Slut"
@@ -3729,8 +3730,9 @@ msgstr "Slut"
msgid "All"
msgstr "Alla"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Antal rader:"
@@ -3826,16 +3828,16 @@ msgid "Query took %01.4f seconds."
msgstr "Frågan tog %01.4f sekunder."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Med markerade:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3843,7 +3845,7 @@ msgstr "Med markerade:"
msgid "Check All"
msgstr "Markera alla"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Utskriftsvänlig visning"
@@ -3941,11 +3943,11 @@ msgstr "Git-information saknas!"
msgid "Open new phpMyAdmin window"
msgstr "Öppna nytt phpMyAdmin-fönster"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Klicka på bommen för att förflytta dig till toppen av sidan"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Javascript måste vara aktiverat efter detta!"
@@ -4009,8 +4011,8 @@ msgstr "Den primära nyckeln har tagits bort."
msgid "Index %s has been dropped."
msgstr "Index %s har tagits bort."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4028,7 +4030,7 @@ msgstr ""
"bort."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -4040,16 +4042,16 @@ msgid "View"
msgstr "Vy"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4061,10 +4063,10 @@ msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4072,19 +4074,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Sök"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4093,7 +4095,7 @@ msgid "Insert"
msgstr "Lägg till"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4102,21 +4104,21 @@ msgid "Privileges"
msgstr "Privilegier"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operationer"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Spårning"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4133,16 +4135,16 @@ msgstr "Trigger"
msgid "Database seems to be empty!"
msgstr "Databasen verkar vara tom!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Fråga"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Rutiner"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4150,18 +4152,18 @@ msgstr "Rutiner"
msgid "Events"
msgstr "Händelser"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Designer"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns"
msgstr "Textarea kolumner"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4169,38 +4171,38 @@ msgstr "Textarea kolumner"
msgid "Databases"
msgstr "Databaser"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Användare"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Binär logg"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replikering"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Variabler"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Teckenuppsättningar"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Insticksprogram"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Motorer"
@@ -4225,7 +4227,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d rad infogad."
msgstr[1] "%1$d rader infogade."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4901,12 +4903,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "En uppräkning, vald från listan av definierade värden"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Max: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4917,28 +4919,28 @@ msgstr "Max: %s%s"
msgid "MySQL said: "
msgstr "MySQL sa: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Förklara SQL-kod"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Utan SQL-förklaring"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "Utan PHP-kod"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Skapa PHP-kod"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
@@ -4946,91 +4948,87 @@ msgid "Edit inline"
msgstr "Redigera index"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sön"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y kl %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dagar, %s timmar, %s minuter och %s sekunder"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Saknade parametrar:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Hoppa till databas \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Klicka för att växla"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Gå igenom din dator:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Välj från webbserverns uppladdningskatalog %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Katalogen du ställt in för uppladdning kan inte nås."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Det finns inga filer att ladda upp!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Töm"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Utför"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Skriv ut"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Skapande"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Senaste uppdatering"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Senaste kontroll"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Startrad:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Sök:"
@@ -5053,13 +5051,13 @@ msgstr "Använd detta värde"
msgid "Rows"
msgstr "Rader"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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"
@@ -5486,7 +5484,7 @@ msgid "Set value: %s"
msgstr "Ange värde: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Återställ standardvärde"
@@ -6243,10 +6241,10 @@ msgstr "Anpassa utforskningsläge."
msgid "Customize default options."
msgstr "Anpassa förvalda alternativ."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6724,7 +6722,7 @@ msgid "Maximum displayed SQL length"
msgstr "Maximal visad SQL-längd"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Användare kan inte ange ett högre värde"
@@ -6943,32 +6941,40 @@ msgstr "Dessa är länkar till Redigera, Kopiera och Radera."
msgid "Where to show the table row links"
msgstr "Var länkarna i tabellraden visas"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr "Använd naturlig ordning vid sortering av tabell- och databasnamn."
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Naturlig ordning"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Använd enbart ikoner, endast text eller både och."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Tabellbaserat navigeringsfält"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "Använd GZip utmatningsbuffer för ökad hastighet i HTTP-överföringar."
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip Utmatningsbuffer"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6976,19 +6982,19 @@ msgstr ""
"[kbd]SMART[/kbd] - dvs fallande ordning för kolumner av typen TIME, DATE, "
"DATETIME och TIMESTAMP, stigande ordning annars."
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Förvald sorteringsordning"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Använd bestående anslutningar till MySQL-databaser."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Bestående anslutningar"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6998,11 +7004,11 @@ msgstr ""
"databasdetaljer om någon av de nödvändiga tabellerna för "
"konfigurationslagring för phpMyAdmin inte kunde hittas."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Saknade phpMyAdmin konfiguration lagringstabeller"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -7010,11 +7016,11 @@ msgstr ""
"Inaktivera standardvarningen som visas om en skillnad mellan MySQL-"
"biblioteket och servern upptäcks."
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Varning för skillnad server/bibliotek"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -7022,27 +7028,27 @@ msgstr ""
"Inaktivera standardvarningen som visas på sidan Struktur om kolumnnamn i en "
"tabell är reserverade MySQL-ord."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Varning för reserverat MySQL-ord"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Hur att visa menyflikarna"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Hur man visar olika åtgärdslänkar"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Tillåt ej redigering av BLOB- och BINARY-kolumner."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Skydda binära kolumner"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7052,129 +7058,129 @@ msgstr ""
"konfigurationslagring). Om inakiverad, så används JS-rutiner för att visa "
"frågehistorik (förloras när fönstret stängs)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Permanent frågehistorik"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Antal frågor som sparas i historiken."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Längd på frågehistorik"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
"Välj vilka funktioner som kommer användas för konvertering av "
"teckenuppsättning."
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Omvandlingsmotor"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Vid bläddring i tabeller är sorteringen av varje tabell ihågkommen."
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Kom ihåg tabellens sortering"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Förvald sorteringsordning"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Upprepa rubrik varje X celler, [kbd]0[/kbd] avaktiverar den här funktionen."
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Reparera rubriker"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Rutnäts-redigering: utlösningsåtgärd"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Kolumn för besläktad nyckel"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "Visningsalternativ för servrar."
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Rutnäts-redigering: spara alla redigerade celler omedelbart"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Katalog där exporter kan sparas på servern."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Sparningskatalog"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Lämna tomt om den inte används."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Host auktorisation för"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Lämna blankt för standardvärden."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Behörighetsregler för host"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Tillåt inloggning utan lösenord"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Tillåt root-inloggning"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Sessionsvärde"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "Namn på HTTP Basic Auth Realm att visa när man gör HTTP Auth."
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7184,19 +7190,19 @@ msgstr ""
"hårdvaruautentisering[/a] (inte placerad i din dokumentrotkatalog; förslag: /"
"etc/swekey.conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey konfigurationsfil"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Autentiseringsmetod att använda."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Autentiseringstyp"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7204,11 +7210,11 @@ msgstr ""
"Lämna tomt för att stänga av [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]bokmärken[/a], förslag: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Tabell för bokmärken"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7216,31 +7222,31 @@ msgstr ""
"Lämna tomt för att stänga av kolumnkommentarer/mime-typer, förslag: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Tabell för kolumninformation"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Komprimera anslutning till MySQL-servern."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Komprimera anslutning"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "Hur ansluta till servern, behåll [kbd]tcp[/kbd] om du är osäker."
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Anslutningstyp"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Lösenord för kontrollanvändare"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7249,11 +7255,11 @@ msgstr ""
"information tillgänglig på [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Kontrollanvändare"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7261,11 +7267,11 @@ msgstr ""
"En alternativ värd för att hålla konfigurationslagring, lämna tomt för att "
"använda den aktuella värden."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Kontrollvärd"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7275,15 +7281,15 @@ msgstr ""
"konfigurationslagring; lämna tomt för att använda standardporten, eller den "
"redan definierade porten, om controlhost motsvarar host."
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Kontrollport"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Dölj databaser som matchar reguljärt uttryck (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7291,15 +7297,15 @@ msgstr ""
"Mer information på [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] och [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Inaktivera användning av INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Dölj databaser"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7307,23 +7313,23 @@ msgstr ""
"Lämna blankt för att stänga av stöd för SQL-frågehistorik, förslag: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Tabell för SQL-frågehistorik"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Värdnamn där MySQL-servern körs."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Serverns värdnamn"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL för utloggning"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7331,17 +7337,17 @@ msgstr ""
"Begränsar antalet tabellpreferenser som lagras i databasen, de äldsta "
"posterna tas bort automatiskt."
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Maximalt antal tabellinställningar att spara"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "Se slavtabell status"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7353,13 +7359,13 @@ msgstr ""
"Lämna blankt för att stänga av stöd för PDF-schema, förslag: "
"[kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "Textarea kolumner"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7371,15 +7377,15 @@ msgstr ""
"Lämna tomt för avstängt stöd för PDF-schema, förslag: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Försök ansluta utan lösenord."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Anslut utan lösenord"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7389,30 +7395,30 @@ msgstr ""
"använda deras ordagranna betydelse, dvs använd [kbd] 'my\\_db\"[/kbd] och "
"inte [kbd]'my_db\"[/kbd]."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Visa endast listade databaser"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Lämna tomt om inte config auth används."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Lösenord för config auth"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Lämna blankt för att stänga av stöd för PDF-schema, förslag: "
"[kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF-schema: Tabell för sidor"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7422,20 +7428,20 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] för komplett information. "
"Lämna tomt för inget stöd. Förslag: [kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Databasnamn"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr "Port som MySQL-servern lyssnar på, lämna blankt för standardport."
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Serverport"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7443,11 +7449,11 @@ msgstr ""
"Lämna tomt för att stänga av \"ihållande\" nyligen använda tabeller över "
"sessioner, förslag: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Nyligen använd tabell"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7459,13 +7465,13 @@ msgstr ""
"Lämna tomt för att stänga av \"ihållande\" nyligen använda tabeller över "
"sessioner, förslag: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "Favorittabeller"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7473,11 +7479,11 @@ msgstr ""
"Lämna tomt för avstängt stöd för [a@http://wiki.phpmyadmin.net/pma/"
"relation]relationslänkar[/a], förslag: [kbd]pma__relation[/kbd]."
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Relationstabell"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7485,31 +7491,31 @@ msgstr ""
"Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/"
"a] för ett exempel."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Signon sessionsnamn"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "Inloggnings-URL"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr "Sockel som MySQL-servern lyssnar på, lämna tomt för standardsocket."
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Server socket"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Aktivera SSL för anslutning till MySQL-servern."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Använd SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7517,13 +7523,13 @@ msgstr ""
"Lämna tomt för avstängt stöd för PDF-schema, förslag: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "PDF-schema: tabellkoordinater"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7531,11 +7537,11 @@ msgstr ""
"Tabell för att beskriva visningskolumnerna, lämna tomt för avstängt stöd; "
"förslag: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Visa tabellkolumner"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7544,11 +7550,11 @@ msgstr ""
"användargränssnittspreferenser som sparas över sessioner, förslag: "
"[kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Tabell för inställningar av användargränssnittet"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7556,11 +7562,11 @@ msgstr ""
"Om DROP DATABASE IF EXISTS-kommando skall läggas till som första raden i "
"loggen när man skapar en databas."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Lägg till DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7568,11 +7574,11 @@ msgstr ""
"Om DROP TABLE IF EXISTS-kommando skall läggas till som första raden i loggen "
"när man skapar en tabell."
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Lägg till DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7580,21 +7586,21 @@ msgstr ""
"Om DROP VIEW IF EXISTS-kommando skall läggas till som första raden i loggen "
"när man skapar en vy."
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Lägg till DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Definierar lista med påståenden vilken auto-creation använder för nya "
"versioner."
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Kommandon att spåra"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7602,11 +7608,11 @@ msgstr ""
"Lämna tomt för avstängt stöd för SQL-frågespårning, förslag: "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL-frågespårningstabell"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7614,11 +7620,11 @@ msgstr ""
"Huruvida spårningsmekanismen skapar versioner för tabeller och vyer "
"automatiskt."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Skapa versioner automatiskt"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7626,11 +7632,11 @@ msgstr ""
"Lämna tomt för att stänga av lagring av användarpreferenser i databasen, "
"förslag: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Lagringstabell för användarinställningar"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7640,11 +7646,11 @@ msgstr ""
"funktionen anpassningsbara menyer; om en av dem lämnas tom inaktiveras "
"funktionen, förslag: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Användartabell"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7654,11 +7660,11 @@ msgstr ""
"anpassningsbara menyer; om en av dem lämnas tom inaktiveras funktionen, "
"förslag: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Användargruppstabell"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7666,15 +7672,15 @@ msgstr ""
"Lämna tomt för att stänga av funktionen att dölja och visa "
"navigationsobjekt, förslag: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Tabell för dolda navigationsobjekt"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Användare för config auth"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7682,19 +7688,19 @@ msgstr ""
"En användarvänlig beskrivning av denna server. Lämna tomt för att visa "
"värdnamnet istället."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Beskrivande namn för denna server"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "Ifall en användare ska få se en \"visa alla (rader)\"-knapp."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Tillåt att visa alla rader"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7704,15 +7710,15 @@ msgstr ""
"autentisering eftersom lösenordet är hårdkodat i konfigurationsfilen; detta "
"begränsar inte möjligheten att utföra samma kommando direkt."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Visa ändra lösenord-formulär"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Visa skapa databas-formulär"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables."
@@ -7721,71 +7727,71 @@ msgstr ""
"Visa eller dölj en kolumn som visar tidsstämpeln för skapandet av samtliga "
"tabeller."
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Tabellkommentarer"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Visa eller dölj en kolumn som visar tidsstämpeln för skapandet av samtliga "
"tabeller."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Visa tidsstämpel för skapande"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Visa eller dölj en kolumn som visar tidsstämpeln Senaste uppdatering för "
"alla tabeller."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Visa tidstämpeln Senaste uppdatering"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Visa eller dölj en kolumn som visar tidsstämpeln Senaste kontroll för alla "
"tabeller."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Visa tidstämpeln Senaste kontroll"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr "Anger om typ-fält först bör visas i ändra/infoga-läge."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Visa fälttyper"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Visa funktionsfälten i ändra/infoga-läge."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Visa funktionsfält"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Huruvida tips ska visas eller inte."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Visa tips"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7793,52 +7799,52 @@ msgstr ""
"Visar länk till resultatet av [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Visa phpinfo()-länk"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Visa detaljerad MySQL-serverinformation"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "Anger om SQL-frågor som genereras av phpMyAdmin ska visas."
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Visa SQL-frågor"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "Anger om frågerutan ska stanna på skärmen efter att den skickats."
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Behåll frågerutan"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr "Tillåt visning av databas- och tabellstatistik (t.ex. av utrymme)."
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Visa statistik"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Markera använda tabeller och gör det möjligt att visa databaser med låsta "
"tabeller."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Hoppa över låsta tabeller"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7846,11 +7852,11 @@ msgid ""
"detected."
msgstr "En varning visas på huvudsidan om Suhosin upptäcks."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin-varning"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7863,13 +7869,13 @@ msgstr ""
"Inaktivera standardvarningen som visas på sidan Struktur om kolumnnamn i en "
"tabell är reserverade MySQL-ord."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Giltighet för inloggnings-cookie"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7881,11 +7887,11 @@ msgstr ""
"Textareans storlek (kolumner) i redigeringsläge, detta värde kommer betonas "
"för SQL-frågetextfält (* 2) och för frågefönster (* 1,25)."
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Textarea kolumner"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7897,31 +7903,31 @@ msgstr ""
"Textareans storlek (rader) i redigeringsläge, detta värde kommer betonas för "
"SQL-frågetextfält (* 2) och för frågefönster (* 1,25)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Textarea rader"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr "Titel på webbläsarfönstret när en databas är vald."
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Titel på webbläsarfönstret när ingenting är markerat."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Standardtitel"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "Titel på webbläsarfönstret när en server är vald."
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "Titel på webbläsarfönstret när en tabell är markerad."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7933,27 +7939,27 @@ msgstr ""
"som kommer från proxyservern 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/"
"kbd]."
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Lista med betrodda proxies för IP allow/deny"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr "Katalog på servern där du kan ladda upp filer för import."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Uppladdningskatalog"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Tillåt sökning i hela databasen."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Använd databassökning"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7961,26 +7967,26 @@ msgstr ""
"När det är avstängt, kan användare inte ange något av alternativen nedan, "
"oberoende av kryssrutan till höger."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Aktivera fliken Utvecklare i inställningar"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Sök efter senaste version"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "Aktivera kontroll efter senaste version på phpMyAdmins hemsida."
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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 "Versionskontroll"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7992,11 +7998,11 @@ msgstr ""
"behöver denna om servern där phpMyAdmin är installerat inte har direkt "
"tillgång till Internet. Formatet är: \"värdnamn:portnummer\"."
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Proxy-url"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -8006,19 +8012,19 @@ msgstr ""
"Om ett användarnamn anges kommer grundläggande autentisering ske. Inga andra "
"typer av autentisering stöds för närvarande."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Proxyanvändarnamn"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "Lösenordet för autentisering med proxy."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Proxylösenord"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -8026,53 +8032,53 @@ msgstr ""
"Aktivera [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a]-"
"komprimering för import- och exportoperationer."
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Ange din publika nyckel till reCaptcha-tjänsten för din domän."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Publik nyckel för reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Ange din privata nyckel för din domäns reCaptcha-tjänst."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Privat nyckel för reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "Välj standardhandling vid sändande av felrapporter."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Skicka felrapporter"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "Utförda frågor"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8100,44 +8106,44 @@ msgstr "HTTP-autentisering"
msgid "Signon authentication"
msgstr "Signon-autentisering"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV med LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-kalkylblad"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Snabb"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Anpassad"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Exportalternativ för databas"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV för MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "OpenDocument-text"
@@ -13929,16 +13935,33 @@ msgstr "Använd bokmärket \"%s\" som standard webbläsarfråga."
msgid "Showing as PHP code"
msgstr "Visar som PHP-kod"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Nuvarande markering innehåller ingen unik kolumn. Funktionerna "
"rutnätsredigera, kryssruta, redigera, kopiera och radera är inte "
"tillgängliga."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Nuvarande markering innehåller ingen unik kolumn. Funktionerna "
+"rutnätsredigera, kryssruta, redigera, kopiera och radera är inte "
+"tillgängliga."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problem med index för tabell `%s`"
@@ -15271,6 +15294,10 @@ msgstr "Kommentar:"
msgid "Drag to reorder"
msgstr "Dra för att ändra ordning."
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Startrad:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Markera kolumner (minst en):"
diff --git a/po/ta.po b/po/ta.po
index c28b964e02..cce2109f60 100644
--- a/po/ta.po
+++ b/po/ta.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-03-02 19:02+0200\n"
"Last-Translator: கணேஷ் குமார் \n"
"Language-Team: Tamil %s:"
msgstr "தரவுத்தளம் %sன் மீது SQL வினவல்:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "வினவலை சமர்ப்பி"
@@ -3442,26 +3443,26 @@ msgstr "புத்தகக்குறி புதுப்பிக்க"
msgid "Delete bookmark"
msgstr "புத்தகக்குறியை அழிக்க"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"வழங்கி பதிலளிக்கவில்லை(அல்லது உள்வழங்கியின் இணைவுக்கொள்குழி சரியாக அமைக்கப்படவில்லை)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "வழங்கி பதிலளிக்கவில்லை."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "தரவுத்தளத்தை கொண்டுள்ள அடைவின் உரிமைகளை சரிபார்க்க."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "தகவல்கள்…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr "அமைப்பாக்கத்தில் உள்ளவாறு அமைத்த கட்டுபாட்டுபயனருக்கான இணைப்பு தோல்வியடைந்தது."
@@ -3501,9 +3502,9 @@ msgstr[0] "%1$s அட்டவணையில் பொருந்தியவ
msgstr[1] "%1$s அட்டவணையில் பொருந்தியவைகள் %2$s "
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3557,28 +3558,28 @@ msgstr "நிறைவரிசைகளை வடிகட்டு"
msgid "Search this table"
msgstr "இந்த அட்டவணையில் தேடுக"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "ஆரம்பம்"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "முந்தைய"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "அடுத்து"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "முடிவு"
@@ -3587,8 +3588,9 @@ msgstr "முடிவு"
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "நிரைவரிசைகளின் எண்ணிக்கை:"
@@ -3685,16 +3687,16 @@ msgid "Query took %01.4f seconds."
msgstr "வினவல் %01.4f நொடிகள் எடுத்துக்கொண்டது."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "உடன் தெரிவுசெய்யப்பட்டது:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3702,7 +3704,7 @@ msgstr "உடன் தெரிவுசெய்யப்பட்டது:"
msgid "Check All"
msgstr "அனைத்தையும் தெரி"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "அச்சுப் பார்வை"
@@ -3795,11 +3797,11 @@ msgstr "Git தகவல் காணவில்லை!"
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3863,8 +3865,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3880,7 +3882,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "வழங்கி"
@@ -3892,16 +3894,16 @@ msgid "View"
msgstr "நோக்கு"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3913,10 +3915,10 @@ msgid "Structure"
msgstr "கட்டமைப்பு"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3924,19 +3926,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "தேடு"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3945,7 +3947,7 @@ msgid "Insert"
msgstr "செருகு"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3954,21 +3956,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "செயல்பாடுகள்"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3985,16 +3987,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4002,16 +4004,16 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "மைய நெடுவரிசைகள்"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4019,38 +4021,38 @@ msgstr "மைய நெடுவரிசைகள்"
msgid "Databases"
msgstr "தரவுத்தளங்கள்"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "பயனர்கள்"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "படியெடுத்தல்"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "மாறிகள்"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "எழுத்துக்கணங்கள்"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "செயல்பொறிகள்"
@@ -4075,7 +4077,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d வரிசை சேர்க்கப்பட்டுள்ளது."
msgstr[1] "%1$d வரிசைகள் சேர்க்கப்பட்டுள்ளன."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4684,12 +4686,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4700,28 +4702,28 @@ msgstr ""
msgid "MySQL said: "
msgstr "MySQL சொன்னது: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "PHP நிரல் இல்லாமல்"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP குறிமுறை உருவாக்கு"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit view"
msgctxt "Inline edit query"
@@ -4729,91 +4731,87 @@ msgid "Edit inline"
msgstr "தொகுப்பு பார்வை"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "ஞாயிறு"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y இல் %I:%M %p"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s நாட்கள் %s மணித்தியாலங்கள் %s நிமிடங்கள் மற்றும் %s நொடிகள்"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "மதிப்புருக்கள் காணப்படவில்லை:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "தரவுத்தளம் தாவி செல்லவும் \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s செயல்பாடு எதுவென்று தெரிந்த ஓர் பிழையால் பாதிக்கப்பட்டுள்ளது, %sஐ பார்க்க"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "பிறழ்வதற்கு சொடுக்குக"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "உமது கணினியிலிருந்து:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "வலை சேவையகத்தின் பதிவேற்ற அடைவுகளிலிருந்து %s தேர்ந்தெடுங்கள்:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "பதிவேற்றத்திற்காக நீங்கள் தேர்வு செய்த அடைவை எட்டமுடியவில்லை."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "பதிவேற்றுவதற்கு எந்த கோப்புகளும் இல்லை!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "வெறுமை"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "செயலாக்குக"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "அச்சிடுக"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "உருவாக்கம்"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "முந்தைய நிகழ்நிலையாக்கம்"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "கடைசி சரிபார்ப்பு"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "துவக்க வரிசை:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "தேடுக:"
@@ -4836,13 +4834,13 @@ msgstr "இம்மதிப்பை பயன்படுத்துக"
msgid "Rows"
msgstr "நிரைவரிசைகள்"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "தரவு"
@@ -5259,7 +5257,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -5932,10 +5930,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6384,7 +6382,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6583,842 +6581,850 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "அட்டவணை வழிசெலுத்தல் பட்டி"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "முதனிலை குறிப்பெழுத்தின் முன்னிருப்பு அடுக்குமுறை"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "தொடர்புடை நிரல்வரிசை காண்பிக்க"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Tables display options."
msgid "For display Options"
msgstr "அட்டவணைகளின் காட்சித்தெரிவுகள்."
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "root புகுபதிவை ஏற்க"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "அமர்வு மதிப்பு"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "உறுதிப்படுத்துதல் பயன்முறைமை."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "சுருங்குறிக்கு பொருந்தும் தரவுத்தளங்களை மறைக்க (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Central columns"
msgid "Central columns table"
msgstr "மைய நெடுவரிசைகள்"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "விருப்பமான அட்டவணைகள்"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "பயனர் அட்டவணை"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "அட்டவணைக் கருத்துரைகள்"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "செயல்கூற்றின் களங்களை காட்டுக"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "phpMyAdminஆல் உருவாக்கபட்ட SQL வினவல் காட்டப்படவேண்டுமா என்பதை வரையறுக்கிறது."
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "SQL வினவல்களை காட்டுக"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "வினவல் பெட்டியை வைத்திருக்க"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "புகுபதிவு நிலைபதிவுத்துணுக்கு செல்லுங்காலம்"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "உரைக்கட்ட நெடுவரிசைகள்"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7426,52 +7432,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "புதிய பதிப்பை பார்வையிடவும்"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7479,80 +7485,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "பயனாளர்:->பதிலி பயனர் பெயர்"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "பதிலி கடவுச்சொல்"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "அமைப்பாக்கம் இல்லா முறைமையை இயலசெய்க"
@@ -7578,44 +7584,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "கட்டற்றஆவண உரை"
@@ -12940,13 +12946,31 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
+#| 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
+"இவ்வட்டவணையில் தனித்தநிரல்வரிசை இல்லை.சேமித்த பின்னர் நெய்யரியில் தொகுத்தல், தேர்வுபெட்டி, "
+"தொகுத்தல், படியெடுத்தல், மற்றும் நீக்கல் வசதிகள் செயல்படாமல் போகலாம்."
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"இவ்வட்டவணையில் தனித்தநிரல்வரிசை இல்லை.சேமித்த பின்னர் நெய்யரியில் தொகுத்தல், தேர்வுபெட்டி, "
+"தொகுத்தல், படியெடுத்தல், மற்றும் நீக்கல் வசதிகள் செயல்படாமல் போகலாம்."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -14183,6 +14207,10 @@ msgstr "கருத்துரை:"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "துவக்க வரிசை:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/te.po b/po/te.po
index a1fde93f07..5c7e62bcb8 100644
--- a/po/te.po
+++ b/po/te.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-02-27 10:56+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Telugu %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "క్వెరీ ని సమర్పించు"
@@ -3586,25 +3587,25 @@ msgstr "శోధించు"
msgid "Delete bookmark"
msgstr "శోధించు"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "వివరాలు…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3644,9 +3645,9 @@ msgstr[0] ""
msgstr[1] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3710,8 +3711,8 @@ msgid "Search this table"
msgstr "ఈ విలువని ఉపయోగించు"
# మొదటి అనువాదము
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
@@ -3719,8 +3720,8 @@ msgid "Begin"
msgstr "మొదలు"
# మొదటి అనువాదము
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3729,8 +3730,8 @@ msgid "Previous"
msgstr "క్రితము"
# మొదటి అనువాదము
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3738,8 +3739,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "తదుపరి"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3751,8 +3752,9 @@ msgstr "ముగింపు"
msgid "All"
msgstr "అన్నీ"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3855,16 +3857,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr ""
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3872,7 +3874,7 @@ msgstr ""
msgid "Check All"
msgstr ""
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr ""
@@ -3971,11 +3973,11 @@ msgstr "సంచిక సమాచారం"
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -4039,8 +4041,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4056,7 +4058,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -4069,16 +4071,16 @@ msgid "View"
msgstr "చూపుము"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4090,10 +4092,10 @@ msgid "Structure"
msgstr "నిర్మాణాకృతి"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4102,19 +4104,19 @@ msgstr ""
# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "శోధించు"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4123,7 +4125,7 @@ msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4132,21 +4134,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr ""
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4163,16 +4165,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4180,18 +4182,18 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Table comments"
msgid "Central columns"
msgstr "పట్టిక వ్యాఖ్యలు"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4199,40 +4201,40 @@ msgstr "పట్టిక వ్యాఖ్యలు"
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "వాడుకరి"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr ""
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -4257,7 +4259,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4921,12 +4923,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "గరిష్ఠం: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4937,28 +4939,28 @@ msgstr "గరిష్ఠం: %s%s"
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Add a new User"
msgctxt "Inline edit query"
@@ -4966,94 +4968,88 @@ msgid "Edit inline"
msgstr "క్రొత్త వాడుకరిని చేర్చు"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "ఆది"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s రోజులు, %s గంటలు, %s నిమిషాలు మరియు %s క్షణాలు"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
# మొదటి అనువాదము
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "ఖాళీ"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "ముద్రించు"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "సృష్టి"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "చివరి మార్పు"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "చివరి చూపు"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "మొదలుపెట్టు"
-
# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
@@ -5079,13 +5075,13 @@ msgstr "ఈ విలువని ఉపయోగించు"
msgid "Rows"
msgstr "వరుసలు"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5528,7 +5524,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6214,10 +6210,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6692,7 +6688,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6894,425 +6890,433 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "సహజ క్రమం"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table options"
msgid "Table navigation bar"
msgstr "పట్టిక ఎంపికలు"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relations"
msgid "Relational display"
msgstr "సంబంధాలు"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Show more actions"
msgid "For display Options"
msgstr "మరిన్ని చర్యలను చూపించు"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "ఉపయోగించకపోతే ఖాళీగా వదిలేయండి"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication method to use."
msgstr "అధీకరణ అమరికలు"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "అనుసంధాన రకం"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Table comments"
msgid "Central columns table"
msgstr "పట్టిక వ్యాఖ్యలు"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7320,436 +7324,436 @@ msgid ""
msgstr ""
# మొదటి అనువాదము
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "డేటాబేస్"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
# మొదటి అనువాదము
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgctxt "short form"
#| msgid "Create table"
msgid "Favorites table"
msgstr "పట్టికను సృష్టించు"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "User preferences"
msgid "UI preferences table"
msgstr "వాడుకరి అభిరుచులు"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "పట్టికల్ని వాడు"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "పట్టిక వ్యాఖ్యలు"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "మరిన్ని చర్యలను చూపించు"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
# మొదటి అనువాదము
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show"
msgid "Show hint"
msgstr "చూపించు"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
+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
+msgid "Retain query box"
+msgstr ""
+
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "గణాంకాలను చూపించు"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Table comments"
msgid "Textarea columns"
msgstr "పట్టిక వ్యాఖ్యలు"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "అప్రమేయ శీర్షిక"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7757,52 +7761,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7810,84 +7814,84 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "వాడుకరిపేరు"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "సంకేతపదం"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -7915,46 +7919,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Spreadsheet"
msgstr "ఓపెన్ డాక్యుమెంట్"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "మైక్రోసాఫ్ట్ వర్డ్ 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Text"
@@ -13604,13 +13608,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -14961,6 +14973,12 @@ msgstr "వ్యాఖ్య"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "మొదలుపెట్టు"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/th.po b/po/th.po
index 9630fad21a..2b523100c8 100644
--- a/po/th.po
+++ b/po/th.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-02-09 16:12+0200\n"
"Last-Translator: mrnonz \n"
"Language-Team: Thai %s:"
msgstr "คำค้นบนฐานข้อมูล %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "ประมวลผลคำค้น"
@@ -3606,27 +3607,27 @@ msgstr "แสดงบุ๊คมาร์ค"
msgid "Delete bookmark"
msgstr "ค้นหา"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3666,9 +3667,9 @@ msgid_plural "%1$s matches in %2$s"
msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3728,14 +3729,14 @@ msgstr "ตัวกรอง"
msgid "Search this table"
msgstr "ค้นหาในฐานข้อมูล"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "เริ่มต้น"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3743,15 +3744,15 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "ก่อนหน้า"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "ถัดไป"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "สุดท้าย"
@@ -3760,8 +3761,9 @@ msgstr "สุดท้าย"
msgid "All"
msgstr "ทั้งหมด"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows:"
@@ -3876,16 +3878,16 @@ msgid "Query took %01.4f seconds."
msgstr "คำค้นใช้เวลา %01.4f วินาที"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "ทำกับที่เลือก:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3893,7 +3895,7 @@ msgstr "ทำกับที่เลือก:"
msgid "Check All"
msgstr "เลือกทั้งหมด"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "แสดง"
@@ -3998,11 +4000,11 @@ msgstr "ข้อมูลเวอร์ชั่น"
msgid "Open new phpMyAdmin window"
msgstr "เปิดหน้าต่างนี้ในแท็บใหม่"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "คลิกที่แถบเพื่อเลื่อนไปยังบนสุดของหน้า"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4068,8 +4070,8 @@ msgstr "โยนคีย์หลักทิ้งไปเรียบร้
msgid "Index %s has been dropped."
msgstr "โยนดัชนี %s ทิ้งไปเรียบร้อยแล้ว"
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4085,7 +4087,7 @@ msgid ""
msgstr "ดัชนี %1$s และ %2$s น่าจะเป็นอันเดียวกัน ควรจะลบออกไปอันหนึ่ง"
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "เซิร์ฟเวอร์"
@@ -4097,16 +4099,16 @@ msgid "View"
msgstr "ตารางจำลอง (View)"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4118,10 +4120,10 @@ msgid "Structure"
msgstr "โครงสร้าง"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4129,19 +4131,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "ค้นหา"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4150,7 +4152,7 @@ msgid "Insert"
msgstr "แทรก"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4159,21 +4161,21 @@ msgid "Privileges"
msgstr "สิทธิ"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "กระบวนการ"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "การติดตาม"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4190,16 +4192,16 @@ msgstr "ทริกเกอร์"
msgid "Database seems to be empty!"
msgstr "ดูเหมือนว่าฐานข้อมูลจะว่างเปล่า!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "คำค้นจากตัวอย่าง"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4207,18 +4209,18 @@ msgstr ""
msgid "Events"
msgstr "เหตุการณ์"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "ผู้ออกแบบ"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns"
msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4226,39 +4228,39 @@ msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)"
msgid "Databases"
msgstr "ฐานข้อมูล"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "ผู้ใช้"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
#, fuzzy
msgid "Binary log"
msgstr "ข้อมูลไบนารี "
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "การจำลองแบบ"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "ตัวแปร"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "ชุดอักขระ"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "ปลั๊กอิน"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "เครื่องมือ"
@@ -4280,7 +4282,7 @@ msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d ระเบียนถูกเพิ่ม"
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4946,12 +4948,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "ขนาดใหญ่สุด: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4962,28 +4964,28 @@ msgstr "ขนาดใหญ่สุด: %s%s"
msgid "MySQL said: "
msgstr "MySQL แสดง: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "อธิบาย SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "ไม่ต้องอธิบาย SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "ไม่เอาโค้ด PHP"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "สร้างโค้ด PHP"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Add new field"
msgctxt "Inline edit query"
@@ -4991,98 +4993,92 @@ msgid "Edit inline"
msgstr "เพิ่มฟิลด์ใหม่"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "อา."
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y %Rน."
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s วัน, %s ชั่วโมง, %s นาที, %s วินาที"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "เพิ่มฟิลด์ใหม่"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "กระโดดไปที่ฐานข้อมูล \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "คลิกเพื่อสลับ"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "เรียกดูคอมพิวเตอร์ของคุณ:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้"
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no files to upload!"
msgstr "ไม่มีไฟล์ที่จะอัพโหลด"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "ลบข้อมูล"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "ดำเนินการ"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "พิมพ์"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "สร้างเมื่อ"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "ปรับปรุงครั้งสุดท้ายเมื่อ"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "ส."
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5107,13 +5103,13 @@ msgstr "ใช้ค่านี้"
msgid "Rows"
msgstr "แถว"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "ข้อมูล"
@@ -5570,7 +5566,7 @@ msgid "Set value: %s"
msgstr "ตั้งค่า: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "คืนค่าเดิม"
@@ -6306,10 +6302,10 @@ msgstr "โหมดเรียกดู"
msgid "Customize default options."
msgstr "ตัวเลือกการส่งออกที่กำหนดเอง"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "ข้อมูล CSV (คั่นด้วยเครื่องหมายลูกน้ำ \",\")"
@@ -6799,7 +6795,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -7011,500 +7007,508 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
#, 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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "เรียงลำดับตามธรรมชาติ"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "คำอธิบายตาราง"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Use persistent connections to MySQL databases."
msgstr "บีบอัดการเชื่อมต่อไปยังเซิร์ฟเวอร์ MySQL"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "เปลี่ยนชื่อตารางเป็น"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "ได้เพิ่มไพรมารีคีย์แล้วใน %s"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "รีเลชันแนล สกีมา"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "ตัวเลือกการแสดงเซิร์ฟเวอร์"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "ค่าเซสชั่น"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "รหัสประจำตัวของ HTTP"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "กำหนดค่าไฟล์ SweKey"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "วิธีการรับรองความถูกต้องที่ใช้"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "ประเภทของการรับรองความถูกต้อง"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "บีบอัดการเชื่อมต่อไปยังเซิร์ฟเวอร์ MySQL"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "บีบอัดการเชื่อมต่อ"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
#, 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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "ประเภทการเชื่อมต่อ"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "โฮสต์ใดๆ"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "โฮสต์ใดๆ"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "ซ่อนฐานข้อมูล"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "ชื่อโฮสต์ของเซิร์ฟเวอร์"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL ที่ออกจากระบบ"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "เชื่อมต่อโดยไม่ต้องใช้รหัสผ่าน"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "เชื่อมต่อโดยไม่ต้องใช้รหัสผ่าน"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "แสดงฐานข้อมูลที่ระบุไว้เท่านั้น"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr "ปล่อยว่างไว้ ถ้าไม่ใช้การกำหนดค่าการรับรองความถูกต้อง"
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "รหัสผ่าน"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "ฐานข้อมูล"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "พอร์ตของเซิร์ฟเวอร์"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "วิเคราะห์ตาราง"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "ตัวแปร"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
#, fuzzy
msgid "Relation table"
msgstr "ซ่อมแซมตาราง"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -7516,394 +7520,394 @@ msgstr ""
"ดูตัวอย่าง [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]ประเภทของการรับรองความถูกต้อง[/a]"
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "ชื่อเซสชั่น"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "URL ที่เข้าสู่ระบบ"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "ซ็อกเก็ตของเซิร์ฟเวอร์"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "ใช้ SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "แสดงหมายเหตุของคอลัมน์"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "จัดระเบียบตาราง"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "คำสั่ง"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "สร้างเวอร์ชั่นโดยอัตโนมัติ"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "ใช้ตาราง"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "ชื่อผู้ใช้"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "หมายเหตุของตาราง"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "แสดงข้อมูลของ PHP"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
msgid "Show field types"
msgstr "แสดงตาราง"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
#, fuzzy
#| msgid "Whether to show hint or not"
msgid "Whether to show hint or not."
msgstr "จะแสดงคำแนะนำหรือไม่"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "แสดงคำแนะนำ"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
#, fuzzy
msgid "Show SQL queries"
msgstr "แสดงคำค้นแบบเต็ม"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "คำค้น SQL"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
#, fuzzy
msgid "Show statistics"
msgstr "สถิติของแถว"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "ข้ามตารางที่ถูกล็อก"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "เข้าสู่ระบบความถูกต้องของคุกกี้"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "ค่าปริยาย"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7911,54 +7915,54 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
#, 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:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7966,33 +7970,33 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
msgid "Proxy username"
msgstr "ชื่อผู้ใช้:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "รหัสผ่าน"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
@@ -8004,53 +8008,53 @@ msgstr ""
"เปิดใช้งาน [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] "
"การบีบอัดสำหรับการดำเนินการนำเข้าและส่งออก"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "พอร์ตของเซิร์ฟเวอร์"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8076,47 +8080,47 @@ msgstr "การรับรองความถูกต้องของ HT
msgid "Signon authentication"
msgstr "การรับรองความถูกต้องของการเข้าสู่ระบบ"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "เอกสารอ้างอิง"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
#, fuzzy
msgid "Database export options"
msgstr "สถิติฐานข้อมูล"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "ข้อมูล CSV สำหรับไมโครซอฟต์เอ็กเซล"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -13870,18 +13874,29 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
-#, fuzzy
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
#| 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"ตารางนี้ไม่มีสดมภ์ไหนที่เก็บค่าที่แตกต่างกันเสมอ การแก้ไขหรือเพิ่มผ่านตารางจะไม่สามารถบันทึกได้"
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"ตารางนี้ไม่มีสดมภ์ไหนที่เก็บค่าที่แตกต่างกันเสมอ การแก้ไขหรือเพิ่มผ่านตารางจะไม่สามารถบันทึกได้"
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -15263,6 +15278,12 @@ msgstr "หมายเหตุ"
msgid "Drag to reorder"
msgstr "ลากเพื่อเปลี่ยนลำดับ"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "ส."
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/tk.po b/po/tk.po
index 3c7e62b29a..1ff9306428 100644
--- a/po/tk.po
+++ b/po/tk.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2013-05-07 17:12+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Turkmen %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr ""
@@ -3254,25 +3255,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3312,9 +3313,9 @@ msgstr[0] ""
msgstr[1] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3370,28 +3371,28 @@ msgstr ""
msgid "Search this table"
msgstr "Şu bahany ulan"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr ""
@@ -3400,8 +3401,9 @@ msgstr ""
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3499,16 +3501,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr ""
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3516,7 +3518,7 @@ msgstr ""
msgid "Check All"
msgstr ""
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr ""
@@ -3609,11 +3611,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3677,8 +3679,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3694,7 +3696,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -3706,16 +3708,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3727,10 +3729,10 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3738,19 +3740,19 @@ msgid "SQL"
msgstr ""
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Gözle"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3759,7 +3761,7 @@ msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3768,21 +3770,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr ""
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3799,16 +3801,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3816,16 +3818,16 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr ""
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3833,38 +3835,38 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr ""
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr ""
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -3889,7 +3891,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4499,12 +4501,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4515,118 +4517,114 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr ""
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr ""
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr ""
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr ""
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr ""
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr ""
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -4651,13 +4649,13 @@ msgstr "Şu bahany ulan"
msgid "Rows"
msgstr ""
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5064,7 +5062,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -5732,10 +5730,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6179,7 +6177,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6378,832 +6376,840 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Show all"
msgid "Favorites table"
msgstr "Hemmesini görkez"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Show all"
msgid "Show table comments"
msgstr "Hemmesini görkez"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
+msgid ""
+"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772
-msgid "Show statistics"
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+msgid "Retain query box"
msgstr ""
#: libraries/config/messages.inc.php:773
+msgid "Allow to display database and table statistics (eg. space usage)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:774
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7211,52 +7217,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7264,80 +7270,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7361,44 +7367,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr ""
@@ -12687,13 +12693,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -13908,6 +13922,10 @@ msgstr ""
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr ""
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index 294b2082c9..1d02ebf189 100644
--- a/po/tr.po
+++ b/po/tr.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-06-20 14:47+0200\n"
"Last-Translator: Burak Yavuz \n"
-"Language-Team: Turkish "
-"\n"
+"Language-Team: Turkish \n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -299,7 +299,7 @@ msgid "Tracked tables"
msgstr "İzlenen tablolar"
#: db_tracking.php:125 db_tracking.php:287 libraries/Menu.class.php:247
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:798
#: 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
@@ -325,7 +325,7 @@ msgid "Updated"
msgstr "Güncellendi"
#: db_tracking.php:129 js/messages.php:237 libraries/Menu.class.php:551
-#: libraries/Util.class.php:4386 libraries/config.values.php:104
+#: libraries/Util.class.php:4391 libraries/config.values.php:104
#: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101
#: libraries/server_status_processes.lib.php:94 libraries/tracking.lib.php:278
msgid "Status"
@@ -513,8 +513,8 @@ msgstr "Geometri ekle"
#: gis_data_editor.php:407 js/messages.php:286
#: libraries/DbSearch.class.php:467 libraries/DisplayResults.class.php:1807
-#: libraries/Util.class.php:4885 libraries/browse_foreigners.lib.php:142
-#: libraries/core.lib.php:610 libraries/display_change_password.lib.php:109
+#: 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_import.lib.php:392 libraries/index.lib.php:44
@@ -543,8 +543,9 @@ msgstr "Geometri ekle"
#: libraries/tracking.lib.php:532 libraries/tracking.lib.php:652
#: prefs_manage.php:277 prefs_manage.php:355
#: templates/columns_definitions/column_definitions_form.phtml:59
-#: templates/index_form.phtml:238 templates/table/selection_form.phtml:75
-#: view_create.php:276 view_operations.php:106
+#: templates/index_form.phtml:238 templates/startAndNumberOfRowsPanel.phtml:14
+#: templates/table/selection_form.phtml:75 view_create.php:276
+#: view_operations.php:106
msgid "Go"
msgstr "Git"
@@ -666,7 +667,7 @@ msgstr ""
msgid "Could not load the progress of the import."
msgstr "İçe aktarma ilerleme durumu yüklenemedi."
-#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:735
+#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:738
#: libraries/export.lib.php:464
#: libraries/plugins/schema/Export_Relation_Schema.class.php:302
#: user_password.php:208
@@ -763,7 +764,7 @@ msgstr "PHP bilgisini göster"
msgid "Version information:"
msgstr "Sürüm bilgisi:"
-#: index.php:392 libraries/Util.class.php:429 libraries/Util.class.php:490
+#: 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/navigation/NavigationHeader.class.php:197
@@ -897,7 +898,7 @@ msgstr ""
"Sunucu Suhosin ile çalışıyor. Lütfen olası sorunlar için %sbelgeden%s "
"yararlanın."
-#: js/messages.php:38 libraries/import.lib.php:125 sql.php:151
+#: js/messages.php:38 libraries/import.lib.php:125 sql.php:161
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi."
@@ -1123,7 +1124,7 @@ msgstr "Sorguyu benzeştir"
msgid "Matched rows:"
msgstr "Eşleşen satırlar:"
-#: js/messages.php:114 libraries/Util.class.php:638
+#: js/messages.php:114 libraries/Util.class.php:641
msgid "SQL query:"
msgstr "SQL sorgusu:"
@@ -1166,12 +1167,12 @@ msgid "Other"
msgstr "Diğer"
#. l10n: Thousands separator
-#: js/messages.php:131 libraries/Util.class.php:1460
+#: js/messages.php:131 libraries/Util.class.php:1463
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:133 libraries/Util.class.php:1462
+#: js/messages.php:133 libraries/Util.class.php:1465
msgid "."
msgstr "."
@@ -1277,40 +1278,40 @@ msgid "Processes"
msgstr "İşlemler"
#. l10n: shortcuts for Byte
-#: js/messages.php:167 libraries/Util.class.php:1404
+#: js/messages.php:167 libraries/Util.class.php:1407
msgid "B"
msgstr "B"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:168 libraries/Util.class.php:1406
+#: js/messages.php:168 libraries/Util.class.php:1409
#: libraries/server_status_monitor.lib.php:217
msgid "KiB"
msgstr "KiB"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:169 libraries/Util.class.php:1408
+#: js/messages.php:169 libraries/Util.class.php:1411
#: libraries/display_export.lib.php:702
#: libraries/server_status_monitor.lib.php:218
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:170 libraries/Util.class.php:1410
+#: js/messages.php:170 libraries/Util.class.php:1413
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:171 libraries/Util.class.php:1412
+#: js/messages.php:171 libraries/Util.class.php:1415
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:172 libraries/Util.class.php:1414
+#: js/messages.php:172 libraries/Util.class.php:1417
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:173 libraries/Util.class.php:1416
+#: js/messages.php:173 libraries/Util.class.php:1419
msgid "EiB"
msgstr "EiB"
@@ -1329,7 +1330,7 @@ msgid "Traffic"
msgstr "Trafik"
#: js/messages.php:179 libraries/Menu.class.php:585
-#: libraries/Util.class.php:4390 libraries/server_status_monitor.lib.php:257
+#: libraries/Util.class.php:4395 libraries/server_status_monitor.lib.php:257
msgid "Settings"
msgstr "Ayarlar"
@@ -1638,8 +1639,8 @@ msgstr ""
#: js/messages.php:264 libraries/Menu.class.php:350
#: libraries/Menu.class.php:453 libraries/Menu.class.php:581
-#: libraries/Util.class.php:4389 libraries/Util.class.php:4404
-#: libraries/Util.class.php:4421 libraries/config/messages.inc.php:236
+#: libraries/Util.class.php:4394 libraries/Util.class.php:4409
+#: libraries/Util.class.php:4426 libraries/config/messages.inc.php:236
#: libraries/display_import.lib.php:105
#: libraries/server_status_monitor.lib.php:318 prefs_manage.php:238
#: setup/frames/menu.inc.php:26
@@ -1709,7 +1710,7 @@ msgstr "SQL biçimlendiriliyor..."
msgid "Cancel"
msgstr "İptal"
-#: js/messages.php:290 libraries/Header.class.php:456
+#: js/messages.php:290 libraries/Header.class.php:455
msgid "Page-related settings"
msgstr "Sayfa ile ilgili ayarlar"
@@ -1786,7 +1787,7 @@ msgstr "Veritabanı Kopyalanıyor"
msgid "Changing Charset"
msgstr "Karakter Grubu Değiştiriliyor"
-#: js/messages.php:314 libraries/Util.class.php:3234
+#: js/messages.php:314 libraries/Util.class.php:3237
msgid "Enable foreign key checks"
msgstr "Dış anahtar kontrollerini etkinleştir"
@@ -1821,9 +1822,9 @@ msgstr "Depolanan işlevin tanımı RETURN ifadesi içermek zorunda!"
#: js/messages.php:328 libraries/DisplayResults.class.php:4857
#: libraries/DisplayResults.class.php:5115 libraries/Menu.class.php:342
#: libraries/Menu.class.php:444 libraries/Menu.class.php:577
-#: libraries/Util.class.php:3675 libraries/Util.class.php:3676
-#: libraries/Util.class.php:4388 libraries/Util.class.php:4403
-#: libraries/Util.class.php:4420 libraries/config/messages.inc.php:230
+#: libraries/Util.class.php:3680 libraries/Util.class.php:3681
+#: libraries/Util.class.php:4393 libraries/Util.class.php:4408
+#: libraries/Util.class.php:4425 libraries/config/messages.inc.php:230
#: libraries/display_export.lib.php:167 libraries/rte/rte_list.lib.php:146
#: libraries/server_privileges.lib.php:2085
#: libraries/server_privileges.lib.php:2164
@@ -1874,11 +1875,11 @@ msgstr "Sorgu kutusunu göster"
#: js/messages.php:343 libraries/Console.class.php:88
#: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3450
#: libraries/DisplayResults.class.php:4839 libraries/Index.class.php:723
-#: libraries/Util.class.php:664 libraries/Util.class.php:1218
-#: libraries/Util.class.php:3673 libraries/Util.class.php:3674
+#: libraries/Util.class.php:667 libraries/Util.class.php:1221
+#: 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:775
+#: libraries/config/messages.inc.php:777
#: libraries/server_user_groups.lib.php:119
#: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179
msgid "Edit"
@@ -2671,63 +2672,63 @@ msgid "December"
msgstr "Aralık"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1620
+#: js/messages.php:655 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Oca"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1622
+#: js/messages.php:657 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Şub"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1624
+#: js/messages.php:659 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1626
+#: js/messages.php:661 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Nis"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1628
+#: js/messages.php:663 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:1630
+#: js/messages.php:665 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Haz"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1632
+#: js/messages.php:667 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Tem"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1634
+#: js/messages.php:669 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Ağu"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1636
+#: js/messages.php:671 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Eyl"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1638
+#: js/messages.php:673 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Eki"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1640
+#: js/messages.php:675 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Kas"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1642
+#: js/messages.php:677 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Ara"
@@ -2765,32 +2766,32 @@ msgid "Sun"
msgstr "Paz"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1647
+#: js/messages.php:698 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Ptesi"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1649
+#: js/messages.php:700 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Sal"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1651
+#: js/messages.php:702 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Çar"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1653
+#: js/messages.php:704 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Per"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1655
+#: js/messages.php:706 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Cum"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1657
+#: js/messages.php:708 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Ctesi"
@@ -2932,7 +2933,7 @@ msgid "Please enter a valid HEX input"
msgstr "Lütfen geçerli bir ONALTILIK girdi değeri girin"
#: js/messages.php:785 libraries/Message.class.php:199
-#: libraries/Util.class.php:624 libraries/core.lib.php:245
+#: 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
msgid "Error"
@@ -3033,7 +3034,7 @@ msgid "Requery"
msgstr "Yeniden sorgula"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:790
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3082,7 +3083,7 @@ msgstr "Şu anki oturum sırasında"
msgid "Explain"
msgstr "Açıkla"
-#: libraries/Console.class.php:216 libraries/Util.class.php:1291
+#: libraries/Console.class.php:216 libraries/Util.class.php:1294
#: libraries/sql.lib.php:278
msgid "Profiling"
msgstr "Profil çıkart"
@@ -3163,17 +3164,14 @@ msgid "Press Enter to execute query"
msgstr "Sorguyu çalıştırmak için Enter tuşuna basın"
#: libraries/Console.class.php:277
-#| msgid "Ascending"
msgid "ascending"
msgstr "küçükten büyüğe"
#: libraries/Console.class.php:280
-#| msgid "Descending"
msgid "descending"
msgstr "büyükten küçüğe"
#: libraries/Console.class.php:283
-#| msgid "Order"
msgid "Order:"
msgstr "Sıra:"
@@ -3182,27 +3180,22 @@ msgid "Count"
msgstr "Sayı"
#: libraries/Console.class.php:292
-#| msgid "Execute every"
msgid "Execution order"
msgstr "Çalıştırma sırası"
#: libraries/Console.class.php:295
-#| msgid "Time taken:"
msgid "Time taken"
msgstr "Aldığı süre"
#: libraries/Console.class.php:298
-#| msgid "Order"
msgid "Order by:"
msgstr "Sıralama:"
#: libraries/Console.class.php:301
-#| msgid "SQL queries"
msgid "Group queries"
msgstr "Sorguları grupla"
#: libraries/Console.class.php:304
-#| msgid "SQL queries"
msgid "Ungroup queries"
msgstr "Sorguların grubunu kaldır"
@@ -3215,12 +3208,11 @@ msgid "Hide trace"
msgstr "İzi gizle"
#: libraries/Console.class.php:317
-#| msgid "Count"
msgid "Count:"
msgstr "Sayı:"
-#: libraries/Console.class.php:332 libraries/Util.class.php:1260
-#: libraries/config/messages.inc.php:777
+#: libraries/Console.class.php:332 libraries/Util.class.php:1263
+#: libraries/config/messages.inc.php:779
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3369,7 +3361,7 @@ msgstr "Del:"
msgid "SQL query on database %s:"
msgstr "%s veritabanındaki SQL sorgusu:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Sorguyu Gönder"
@@ -3393,7 +3385,7 @@ msgstr "Yer imini güncelle"
msgid "Delete bookmark"
msgstr "Yer imini sil"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3401,19 +3393,19 @@ msgstr ""
"Sunucu yanıt vermiyor (ya da yerel MySQL sunucusunun soketi doğru olarak "
"yapılandırılmadı)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Sunucu yanıt vermiyor."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Lütfen veritabanını içeren dizinin yetkilerini kontrol edin."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Ayrıntılar…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Yapılandırma dosyanız içinde tanımlanmış denetim kullanıcıları için bağlantı "
@@ -3455,9 +3447,9 @@ msgstr[0] "%2$s tablosu içerisinde %1$s eşleşme"
msgstr[1] "%2$s tablosu içerisinde %1$s eşleşme"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3511,28 +3503,28 @@ msgstr "Satırları süz"
msgid "Search this table"
msgstr "Bu tabloda ara"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Başlangıç"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Önceki"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Sonraki"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Son"
@@ -3541,8 +3533,9 @@ msgstr "Son"
msgid "All"
msgstr "Tümü"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Satır sayısı:"
@@ -3639,16 +3632,16 @@ msgid "Query took %01.4f seconds."
msgstr "Sorgu %01.4f saniye sürdü."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Seçilileri:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3656,7 +3649,7 @@ msgstr "Seçilileri:"
msgid "Check All"
msgstr "Tümünü Seç"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Baskı görünümü"
@@ -3752,11 +3745,11 @@ msgstr "Git bilgisi eksik!"
msgid "Open new phpMyAdmin window"
msgstr "Yeni phpMyAdmin penceresi aç"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Sayfanın en üstüne kaydırmak için çubuğa tklayın"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "Bu kısmı geçmek için Javascript etkinleştirilmek zorundadır!"
@@ -3820,8 +3813,8 @@ msgstr "Birincil anahtar kaldırıldı."
msgid "Index %s has been dropped."
msgstr "%s indeksi kaldırıldı."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3839,7 +3832,7 @@ msgstr ""
"olabilir."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Sunucu"
@@ -3851,16 +3844,16 @@ msgid "View"
msgstr "Görünüm"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3872,10 +3865,10 @@ msgid "Structure"
msgstr "Yapı"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3883,19 +3876,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Ara"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3904,7 +3897,7 @@ msgid "Insert"
msgstr "Ekle"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3913,21 +3906,21 @@ msgid "Privileges"
msgstr "Yetkiler"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "İşlemler"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "İzleme"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3944,16 +3937,16 @@ msgstr "Tetikleyiciler"
msgid "Database seems to be empty!"
msgstr "Veritabanı boş olarak görünüyor!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Sorgu"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Yordamlar"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3961,16 +3954,16 @@ msgstr "Yordamlar"
msgid "Events"
msgstr "Olaylar"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Tasarımcı"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Merkezi sütunlar"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3978,38 +3971,38 @@ msgstr "Merkezi sütunlar"
msgid "Databases"
msgstr "Veritabanları"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Kullanıcılar"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "İkili değer günlüğü"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Kopya Etme"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Değişkenler"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Karakter Grupları"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Eklentiler"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Motorlar"
@@ -4034,7 +4027,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d satır eklendi."
msgstr[1] "%1$d satır eklendi."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4707,12 +4700,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr "Bir numaralandırma, tanımlanmış değerlerin listesinden seçilir"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "En fazla: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4723,118 +4716,114 @@ msgstr "En fazla: %s%s"
msgid "MySQL said: "
msgstr "MySQL çıktısı: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "SQL'i açıkla"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "SQL Açıklamasını atla"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr "%s sitesinde Açıklamayı Çözümle"
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "PHP Kodsuz"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP Kodu oluştur"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "Satır içi düzenle"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Paz"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M:%S"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s gün, %s saat, %s dakika ve %s saniye"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Eksik parametreler:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "\"%s\" veritabanına git."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakınız %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Değiştirmek için tıklayın"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Bilgisayara gözat:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Web sunucusu gönderme dizininden %s seçin:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Gönderme işi için ayarladığınız dizine ulaşılamıyor."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Göndermek için hiç dosya yok!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Boşalt"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Çalıştır"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Yazdır"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Oluşturma"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Son güncelleme"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Son kontrol"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Başlangıç satırı:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Arama:"
@@ -4857,13 +4846,13 @@ msgstr "Bu değeri kullan"
msgid "Rows"
msgstr "Satır"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Veri"
@@ -5281,7 +5270,7 @@ msgid "Set value: %s"
msgstr "Ayar değeri: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Varsayılan değeri geri yükle"
@@ -6034,10 +6023,10 @@ msgstr "Gözatma kipini özelleştirir."
msgid "Customize default options."
msgstr "Varsayılan seçenekleri özelleştirir."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6517,7 +6506,7 @@ msgid "Maximum displayed SQL length"
msgstr "En fazla görüntülenen SQL uzunluğu"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Kullanıcılar yüksek değer ayarlayamazlar"
@@ -6729,33 +6718,41 @@ msgstr "Bunlar Düzenle, Kopyala ve Sil bağlantılarıdır."
msgid "Where to show the table row links"
msgstr "Tablo satır bağlantılarının nerede gösterileceği"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr "Tablo ve veritabanı adlarını sıralamak için doğal sıra kullan."
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Doğal sıra"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Sadece simgeleri, sadece metni veya her ikisinide kullan."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Tablo gezinti çubuğu"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"HTTP aktarımlarındaki arttırılmış hız için GZip çıktı arabellekleme kullan."
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip çıktı arabellekleme"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6763,19 +6760,19 @@ msgstr ""
"[kbd]SMART[/kbd] - yani TIME, DATE, DATETIME ve TIMESTAMP türü sütunları "
"için büyükten küçüğe sıralama, aksi halde küçükten büyüğe sıralama."
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Varsayılan sıralama düzeni"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "MySQL veritabanlarına sürekli bağlantı kullan."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Sürekli bağlantılar"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6785,11 +6782,11 @@ msgstr ""
"biri bulunamazsa, veritabanı ayrıntıları Yapı sayfasında görüntülenen "
"varsayılan uyarıyı etkisizleştirir."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Eksik phpMyAdmin yapılandırma depolama tabloları"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6797,11 +6794,11 @@ msgstr ""
"Eğer MySQL kütüphanesi ve sunucu arasında fark saptanırsa, görüntülenen "
"varsayılan uyarıyı etkisizleştirir."
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Sunucu/kütüphane farkı uyarısı"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6809,27 +6806,27 @@ msgstr ""
"Eğer bir tablodaki sütun adları MySQL kelimelerine ayrılmışsa, Yapı "
"sayfasında görüntülenen varsayılan uyarıyı etkisizleştirir."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "MySQL'e ayrılmış kelime uyarısı"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Menü sekmelerinin nasıl görüntüleneceği"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Çeşitli eylem bağlantılarının nasıl görüntüleneceği"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "BLOB ve BINARY sütunlarını düzenlemeye izin vermez."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "İkili değer sütunlarını koru"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6840,105 +6837,105 @@ msgstr ""
"geçmişini görüntülemek için bu, JS-yordamlarından yararlanır (pencerenin "
"kapatılmasıyla kaybolur)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Kalıcı sorgu geçmişi"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Geçmişte ne kadar sorgu tutulacağıdır."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Sorgu geçmişi uzunluğu"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr "Karakter grubu dönüştürme için kullanılacak olan işlevleri seçin."
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Kaydetme motoru"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Tablolara gözatılırken her tablonun sıralaması hatırlanır."
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Tablonun sıralamasını hatırla"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr "Birincil anahtarı olan tablolar için varsayılan sıralama düzeni."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "Birincil anahtar varsayılan sıralama düzeni"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Her X hücrede başlığı tekrarla, [kbd]0[/kbd] bu özelliği devre dışı bırakır."
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Başlıkları tekrarla"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "Izgara düzenleme: tetikleme eylemi"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "Bağlantılı görüntüleme"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "Seçenekleri görüntülemek için"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Izgara düzenleme: bir defada tüm düzenlenen hücreleri kaydet"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Dışa aktarmaların sunucu üzerinde kaydedilebileceği dizin."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Kayıt dizini"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Eğer kullanılmayacaksa boş bırakın."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Anamakine izin düzeni"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Varsayılan için boş bırakın."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Anamakine izin kuralları"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Parolasız oturum açmaya izin ver"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Root oturumu açmaya izin ver"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "Oturum saat dilimi"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -6946,17 +6943,17 @@ msgstr ""
"Etkili saat dilimini ayarlar; muhtemelen veritabanı sunucunuzdakinden "
"farklıdır"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
"HTTP Kimlik Doğrulaması yaparken görüntülemek için Basit Kimlik Doğrulaması "
"alan adı."
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP Alanı"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -6966,19 +6963,19 @@ msgstr ""
"yapılandırma dosyası yolu (belge kök klasörünüzde yer almaz; önerilen: /etc/"
"swekey.conf)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey yapılandırma dosyası"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Kullanmak için kimlik doğrulaması yöntemi."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Kimlik doğrulaması türü"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -6986,11 +6983,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/bookmark]Yer imi[/a] desteği olmaması için "
"boş bırakın, önerilen: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Yer imi tablosu"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -6998,33 +6995,33 @@ msgstr ""
"Sütun yorumları/mime türleri istenmiyorsa boş bırakın, önerilen: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Sütun bilgisi tablosu"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "MySQL sunucusu bağlantısını sıkıştırır."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Bağlantıyı sıkıştır"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
"Sunucuya nasıl bağlanılacağıdır, eğer emin değilseniz [kbd]tcp[/kbd] olarak "
"bırakın."
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Bağlantı türü"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Denetim kullanıcısı parolası"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7032,11 +7029,11 @@ msgstr ""
"Sınırlı izinlerle yapılandırılmış özel MySQL kullanıcısıdır, daha fazla "
"bilgi [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]'de mevcuttur."
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Denetim kullanıcısı"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7044,11 +7041,11 @@ msgstr ""
"Yapılandırma depolamasını tutmak için alternatif anamakine; zaten "
"tanımlanmış anamakineyi kullanmak için boş bırakın."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Denetim anamakinesi"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7059,15 +7056,15 @@ msgstr ""
"anamakineye eşitse zaten tanımlanmış bağlantı noktasını kullanmak için boş "
"bırakın."
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Denetim bağlantı noktası"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Düzenli ifadeye (PCRE) uyan veritabanlarını gizler."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7075,15 +7072,15 @@ msgstr ""
"[a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA hata izleyici[/a] ve "
"[a@http://bugs.mysql.com/19588]MySQL Hataları[/a] üzerine daha fazla bilgi"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA kullanımını etkisizleştir"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Veritabanlarını gizle"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7091,23 +7088,23 @@ msgstr ""
"SQL sorgu geçmişi desteği istenmiyorsa boş bırakın, önerilen: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL sorgu geçmişi tablosu"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "MySQL sunucusunun çalıştığı anamakine."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Sunucu anamakine adı"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "Oturum kapatma URL'si"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7115,15 +7112,15 @@ msgstr ""
"Veritabanında saklanan tablo tercihlerinin sayısını sınırlandırır, en eski "
"kayıtlar otomatik olarak kaldırılır."
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Saklamak için en fazla tablo tercihleri sayısıdır"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr "QBE kaydedilmiş aramalar tablosu"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7131,11 +7128,11 @@ msgstr ""
"QBE kaydedilmiş aramalar desteği istenmiyorsa boş bırakın, önerilen: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "Merkezi sütunlar tablosu"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7143,15 +7140,15 @@ msgstr ""
"Merkezi sütunlar desteği istenmiyorsa boş bırakın, önerilen: "
"[kbd]pma__central_columns[/kbd]."
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Parolasız bağlanmayı dener."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Parolasız bağlan"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7161,30 +7158,30 @@ msgstr ""
"uygun örneklerini kullanmak istiyorsanız bundan kaçının, yani [kbd]'my"
"\\_db'[/kbd] kullanın ve [kbd]'my_db'[/kbd] kullanmayın."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Sadece listelenmiş veritabanları göster"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Eğer yapılandırma kimlik doğrulaması kullanılmıyorsa boş bırakın."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Yapılandırma kimlik den. için parola"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"PDF şeması desteği istenmiyorsa boş bırakın, önerilen: [kbd]pma__pdf_pages[/"
"kbd]."
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF şeması: sayfalar tablosu"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7194,22 +7191,22 @@ msgstr ""
"bilgi için [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]'ye bakın. "
"Destek istenmiyorsa boş bırakın. Önerilen: [kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Veritabanı adı"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"MySQL sunucusunun dinlediği bağlantı noktası, varsayılan ayar için boş "
"bırakın."
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Sunucu bağ.noktası"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7217,11 +7214,11 @@ msgstr ""
"Oturum geçişlerinde \"sürekli\" son kullanılan tablolar olmaması için boş "
"bırakın, önerilen: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Son kullanılan tablo"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7229,11 +7226,11 @@ msgstr ""
"Oturum geçişlerinde \"sürekli\" sık kullanılan tablolar olmaması için boş "
"bırakın, önerilen: [kbd]pma__favorite[/kbd]."
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "Sık kullanılanlar tablosu"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7241,11 +7238,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]İlişki bağlantıları[/a] desteği "
"istenmiyorsa boş bırakın, önerilen: [kbd]pma__relation[/kbd]."
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Bağlantı tablosu"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7253,32 +7250,32 @@ msgstr ""
"Örnek için [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]kimlik "
"doğrulaması türlerine[/a] bakın."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Oturumu açma oturum adı"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "Oturumu açma URL'si"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"MySQL sunucusunun dinlemede olduğu soket, varsayılan ayar için boş bırakın."
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Sunucu soketi"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "MySQL sunucusuna bağlantı için SSL'i etkinleştirin."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "SSL kullan"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7286,11 +7283,11 @@ msgstr ""
"PDF şeması desteği istenmiyorsa boş bırakın, önerilen: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Tasarımcı ve PDF şeması: tablo koordinatları"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7298,11 +7295,11 @@ msgstr ""
"Görüntü sütunlarını tanımlayan tablodur, destek istenmiyorsa boş bırakın; "
"önerilen: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Görüntü sütunları tablosu"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7310,11 +7307,11 @@ msgstr ""
"Oturum geçişlerinde \"sürekli\" tabloların KA tercihleri olmaması için boş "
"bırakın, önerilen: [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "KA tercihleri tablosu"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7322,11 +7319,11 @@ msgstr ""
"Bir veritabanı oluşturulduğunda günlüğe ilk satır olarak DROP DATABASE IF "
"EXISTS ifadesi eklenecekse."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE ifadesi ekle"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7334,11 +7331,11 @@ msgstr ""
"Bir tablo oluşturulduğunda günlüğe ilk satır olarak DROP TABLE IF EXISTS "
"ifadesi eklenecekse."
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "DROP TABLE ifadesi ekle"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7346,20 +7343,20 @@ msgstr ""
"Bir görünüm oluşturulduğunda günlüğe ilk satır olarak DROP VIEW IF EXISTS "
"ifadesi eklenecekse."
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "DROP VIEW ifadesi ekle"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Yeni sürümler için otomatik oluşturma kullanan ifadeler listesini tanımlar."
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "İfadelerden izlere"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7367,11 +7364,11 @@ msgstr ""
"SQL sorgu izleme desteği olmaması için boş bırakın, önerilen: "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL sorgu izleme tablosu"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7379,11 +7376,11 @@ msgstr ""
"İzleme mekanizması tablolar ve görünümler için otomatik olarak sürümler "
"oluşturursa."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Otomatik olarak sürümleri oluştur"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7391,11 +7388,11 @@ msgstr ""
"Veritabanında kullanıcı tercihleri depolaması olmaması için boş bırakın, "
"önerilen: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Kullanıcı tercihleri depolama tablosu"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7405,11 +7402,11 @@ msgstr ""
"özelliğini etkinleştirmek için gereklidir; ikisinden birini boş bırakmak bu "
"özelliği etkisizleştirecek, önerilen: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Kullanıcılar tablosu"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7419,11 +7416,11 @@ msgstr ""
"özelliğini etkinleştirmek için gereklidir; ikisinden birini boş bırakmak bu "
"özelliği etkisizleştirecek, önerilen: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Kullanıcı grupları tablosu"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7431,15 +7428,15 @@ msgstr ""
"Gezinti öğelerini gizleme ve gösterme özelliğini etkisizleştirmek için boş "
"bırakın, önerilen: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Gizli gezinti öğeleri tablosu"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Yapılandırma kimlik den. için kullanıcı"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7447,21 +7444,21 @@ msgstr ""
"Bu sunucunun kolay kullanım açıklaması. Anamakine adını görüntülemek için "
"boş bırakın."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Bu sunucunun ayrıntılı adı"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
"Kullanıcıya \"tümünü (satırları) göster\" düğmesinin görüntülenip "
"görüntülenmemesidir."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Tüm satırları görüntülemeye izin ver"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7471,56 +7468,56 @@ msgstr ""
"[kbd]yapılandırmasını[/kbd] etkilemez çünkü parola yapılandırma dosyasında "
"sıkı kodlanmıştır; bu, doğrudan aynı komutun yürütme kabiliyetini kısıtlamaz."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Parola değiştirme formunu göster"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Veritabanı oluşturma formu göster"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
"Tüm tablolar için yorumları görüntüleyen sütunu gösterin veya gizleyin."
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr "Tablo yorumlarını göster"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Tüm tablolar için Oluşturma zaman damgasını görüntüleyen sütunu gösterin "
"veya gizleyin."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Oluşturma zaman damgasını göster"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Tüm tablolar için Son güncelleme zaman damgasını görüntüleyen sütunu "
"gösterin veya gizleyin."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Son güncelleme zaman damgasını göster"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Tüm tablolar için Son kontrol zaman damgasını görüntüleyen sütunu gösterin "
"veya gizleyin."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Son kontrol zaman damgasını göster"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7528,27 +7525,27 @@ msgstr ""
"Düzenle/ekle kipinde yazma alanlarının ilk olarak görüntülenip "
"görüntülenmemesini tanımlar."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Alan türlerini göster"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "İşlev alanlarını düzenle/ekle kipinde görüntüler."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "İşlev alanlarını göster"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "İpucu gösterilip gösterilmeyeceği."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "İpucu göster"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7556,56 +7553,56 @@ msgstr ""
"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] çıktısı için "
"bağlantı gösterir."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "phpinfo() bağlantısını göster"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Ayrıntılı MySQL sunucu bilgisini göster"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
"phpMyAdmin tarafından oluşturulan SQL sorgularının görüntülenip "
"görüntülenmemesini tanımlar."
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "SQL sorgularını göster"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "Sorgu kutusunun sunuşundan sonra ekranda kalıp kalmamasını tanımlar."
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Sorgu kutusunu tut"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Veritabanı ve tablo istatistiklerini görüntülemek için izin verir (örn. alan "
"kullanımı)."
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "İstatistikleri göster"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Kullanılan tabloları işaretleyin ve veritabanlarını kilitli tablolarla "
"birlikte gösterilmesini mümkün yapın."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Kilitli tabloları atla"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7613,11 +7610,11 @@ msgstr ""
"Eğer Suhosin algılanırsa, ana sayfada görüntülenen varsayılan uyarıyı "
"etkisizleştirir."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin uyarısı"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 "
@@ -7627,11 +7624,11 @@ msgstr ""
"değerinden az ise, ana sayfada görüntülenen varsayılan uyarıyı "
"etkisizleştirin."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "Oturum açma tanımlama bilgisi geçerlilik uyarısı"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7639,11 +7636,11 @@ msgstr ""
"Düzenle kipinde metin alanı boyutu (sütunlar), SQL sorgu metni alanları (*2) "
"için bu değerin önemi belirtilecektir."
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Metin alanı sütunları"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7651,31 +7648,31 @@ msgstr ""
"Düzenle kipinde metin alanı boyutu (satırlar), SQL sorgu metni alanları (*2) "
"için bu değerin önemi belirtilecektir."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Metin alanı satırları"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr "Veritabanı seçildiğinde tarayıcı penceresi başlığı."
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Hiçbir şey seçilmediğinde tarayıcı penceresi başlığı."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Varsayılan başlık"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "Sunucu seçildiğinde tarayıcı penceresi başlığı."
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "Tablo seçildiğinde tarayıcı penceresi başlığı."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7687,28 +7684,28 @@ msgstr ""
"Forwarded-For) başlığına güvenmesini belirler:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "IP İzin Verme/Reddetme için güvenilir proksi listesi"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
"İçe aktarmak için dosyaları gönderebileceğiniz sunucu üzerindeki dizin."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Gönderme dizini"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Tüm veritabanı içinde aramaya izin verir."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Veritabanı aramayı kullan"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7716,26 +7713,26 @@ msgstr ""
"Etkisizleştirildiğinde kullanıcılar sağdaki işaret kutusunu dikkate almadan "
"herhangi bir seçeneği ayarlayamazlar."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Ayarlarda Geliştirici sekmesini etkinleştir"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Son sürümü kontrol et"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "Ana phpMyAdmin sayfasında son sürümü kontrol etmeyi etkinleştirir."
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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 "Sürüm kontrolü"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7747,11 +7744,11 @@ msgstr ""
"doğrudan internet erişimi yoksa buna ihtiyacınız olur. Biçimi: "
"\"anamakineadı:bağlantınoktası\"."
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Proksi url'si"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7761,19 +7758,19 @@ msgstr ""
"doğrulaması yapılmaz. Eğer kullanıcı adı verilirse, Temel Kimlik Doğrulaması "
"yapılacaktır. Kimlik doğrulamasının şu an desteklenen diğer türleri yoktur."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Proksi kullanıcı adı"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "Proksi ile kimlik doğrulaması için parola."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Proksi parolası"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7781,35 +7778,35 @@ msgstr ""
"İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] sıkıştırmayı etkinleştirin."
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Etki alanı reCaptcha hizmetiniz için ortak anahtarınızı girin."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "ReCaptcha için ortak anahtar"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Etki alanı reCaptcha hizmetiniz için özel anahtarınızı girin."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "ReCaptcha için özel anahtar"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "Hata raporlarını gönderirken varsayılan eylemi seçin."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Hata raporlarını gönder"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7817,11 +7814,11 @@ msgstr ""
"Sorgular Enter (bunun yerine Ctrl+Enter) tuşuna basılarak çalıştırılır. Yeni "
"satırlar Shift+Enter ile eklenecektir."
-#: libraries/config/messages.inc.php:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr "Enter konsolda sorguları çalıştırır"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7829,7 +7826,7 @@ msgstr ""
"phpMyAdmin yapılandırma depolaması tablolarını otomatik olarak kurmanıza "
"izin veren Sıfır Yapılandırması kipini etkinleştirin."
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Sıfır Yapılandırması kipini etkinleştir"
@@ -7854,44 +7851,44 @@ msgstr "HTTP kimlik doğrulaması"
msgid "Signon authentication"
msgstr "Oturumu açma kimlik doğrulaması"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "VERİ YÜKLE kullanarak CSV"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument Hesap Tablosu"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Hızlı"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Özel"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Veritabanı dışa aktarma seçenekleri"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "MS Excel için CSV"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "OpenDocument Metni"
@@ -13620,15 +13617,31 @@ msgstr "Varsayılan gözatma sorgusu olarak \"%s\" yer imi kullanılıyor."
msgid "Showing as PHP code"
msgstr "PHP kodu olarak gösteriliyor"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Şu anki seçim benzersiz bir sütun içermiyor. Izgara düzenleme, işaretleme "
"kutusu, Düzenle, Kopyala ve Sil özellikleri kullanılabilir değil."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Şu anki seçim benzersiz bir sütun içermiyor. Izgara düzenleme, işaretleme "
+"kutusu, Düzenle, Kopyala ve Sil özellikleri kullanılabilir değil."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar"
@@ -14892,6 +14905,10 @@ msgstr "Yorum:"
msgid "Drag to reorder"
msgstr "Yen.düzenleme için sürükleyin"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Başlangıç satırı:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Sütunları seç (en az bir):"
diff --git a/po/tt.po b/po/tt.po
index 22d6d06883..091e9d64e5 100644
--- a/po/tt.po
+++ b/po/tt.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-11-05 10:35+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Tatar %s:"
msgstr "%s biremlegenä SQL-soraw:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Sorawnı Yulla"
@@ -3744,7 +3745,7 @@ msgstr "Bitbilge kürsätü"
msgid "Delete bookmark"
msgstr "Ezläw"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3752,21 +3753,21 @@ msgid ""
"configured)."
msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)"
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Bu server endäşmi"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3806,9 +3807,9 @@ msgid_plural "%1$s matches in %2$s"
msgstr[0] "%s kileşü bar, %s atlı tüşämädä"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3875,16 +3876,16 @@ msgstr "Alan"
msgid "Search this table"
msgstr "Biremlektä ezläw"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Başlawğa"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3892,8 +3893,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Uzğan"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3901,8 +3902,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "Kiläse"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3913,8 +3914,9 @@ msgstr "Azaq"
msgid "All"
msgstr "Barısı"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows:"
@@ -4030,16 +4032,16 @@ msgid "Query took %01.4f seconds."
msgstr "Soraw eşkärtü %01.4f sek aldı"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Saylanğannı:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -4047,7 +4049,7 @@ msgstr "Saylanğannı:"
msgid "Check All"
msgstr "Saylap Beter"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Bastıru küreneşe"
@@ -4151,11 +4153,11 @@ msgstr "Söreme turında"
msgid "Open new phpMyAdmin window"
msgstr "Yaña phpMyAdmin-täräzä açu"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -4220,8 +4222,8 @@ msgstr "Töp açqıç beterelde."
msgid "Index %s has been dropped."
msgstr "\"%s\" digän tezeş salındı."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4237,7 +4239,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -4249,16 +4251,16 @@ msgid "View"
msgstr "Qaraş"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4270,10 +4272,10 @@ msgid "Structure"
msgstr "Tözeleş"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4281,19 +4283,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Ezläw"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4302,7 +4304,7 @@ msgid "Insert"
msgstr "Östäw"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4311,21 +4313,21 @@ msgid "Privileges"
msgstr "Xoquqlar"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Eşkärtü"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4342,16 +4344,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Soraw"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4360,18 +4362,18 @@ msgstr ""
msgid "Events"
msgstr "Cibärelde"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns"
msgstr "Add/Delete Field Columns"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4379,41 +4381,41 @@ msgstr "Add/Delete Field Columns"
msgid "Databases"
msgstr "Biremleklär"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "Qullanuçı"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Binar köndälek"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
#, fuzzy
msgid "Replication"
msgstr "Bäyläneşlär"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Üzgärmälär"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Bilgelämä"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Engine"
@@ -4439,7 +4441,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "Kertemnär sayladı"
msgstr[1] "Kertemnär sayladı"
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -5090,12 +5092,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Max: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5106,28 +5108,28 @@ msgstr "Max: %s%s"
msgid "MySQL said: "
msgstr "MySQL qaytarışı: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "SQL Centekläw"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "SQL Centeklämäskä"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "PHP Kodısız"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP-Kod yasa"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Print view"
msgctxt "Inline edit query"
@@ -5135,95 +5137,89 @@ msgid "Edit inline"
msgstr "Bastıru küreneşe"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ykş"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y.%m.%d, %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s kön, %s säğät, %s minut ta %s sekund"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "\"%s\" biremlegenä küç."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "web-server'neñ yökläw törgäge"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Yökläw öçen bigelängän törgäkne uqıp bulmí."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
msgid "There are no files to upload!"
msgstr "Tüşämä tikşerü"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Buşat"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Bastır"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Yasalışı"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Soñğı yañartılu"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Soñğı tikşerü"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "Şmb"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5248,13 +5244,13 @@ msgstr "Bu bäyä belän"
msgid "Rows"
msgstr "Kerem"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Eçtälek"
@@ -5706,7 +5702,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6428,10 +6424,10 @@ msgstr "Üzennän tözälü ısulı"
msgid "Customize default options."
msgstr "Biremlek saqlaw köyläneşe"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6922,7 +6918,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -7140,895 +7136,903 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Tüşämä eçtälegen bolay tezäse"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Tüşämä başlığı"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Tüşämä adın üzgärtü"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "\"%s\" öçen töp açqıç qorıldı"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Tözätü cebe"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "Bäyläneşlär sxeme"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
msgid "For display Options"
msgstr "Biremlek saqlaw köyläneşe"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
#, fuzzy
msgid "Save directory"
msgstr "Biremnär törgäge"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Sessi bäyäse"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
msgid "Authentication method to use."
msgstr "Bäyläneşlär"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "MySQL servergä totaşılıp bulmadı"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
#, fuzzy
msgid "Connection type"
msgstr "Totaşular"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Bar bulğan host"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Bar bulğan host"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
#, fuzzy
msgid "Hide databases"
msgstr "Biremleklär yuq"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
#, fuzzy
msgid "Server hostname"
msgstr "server adı"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Add/Delete Field Columns"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Sersüzen üzgärtäse tügel"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "biremlek adı"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
#, fuzzy
msgid "Server port"
msgstr "Server ID'e"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Tüşämä centekläw"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Üzgärmälär"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
#, fuzzy
msgid "Relation table"
msgstr "Tüşämä tözätü"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
#, fuzzy
msgid "Server socket"
msgstr "Server Saylaw"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, fuzzy
msgid "Enable SSL for connection to MySQL server."
msgstr "Köndälek biremenä yazılğan bayt sanı bu."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Buy Açıqlamasın Kürsätäse"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Tüşämä kisäklären berläşterü"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Cömlä"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Üzennän tözälü ısulı"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Tüşämä qullanıp"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Host Tüşämä eçennän"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Tüşämä açıqlaması"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "PHP turında"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Açıq tüşämä tezmäse"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Sırlı kürsät"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
#, fuzzy
msgid "Show SQL queries"
msgstr "Tulı Sorawlar Kürsät"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL-soraw"
-#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
-msgstr ""
-
-#: libraries/config/messages.inc.php:772
-#, fuzzy
-msgid "Show statistics"
-msgstr "Kerem Nöfüse"
-
#: libraries/config/messages.inc.php:773
-msgid ""
-"Mark used tables and make it possible to show databases with locked tables."
+msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
#: libraries/config/messages.inc.php:774
#, fuzzy
+msgid "Show statistics"
+msgstr "Kerem Nöfüse"
+
+#: libraries/config/messages.inc.php:775
+msgid ""
+"Mark used tables and make it possible to show databases with locked tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:776
+#, fuzzy
msgid "Skip locked tables"
msgstr "Açıq tüşämä tezmäse"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Add/Delete Field Columns"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
msgid "Default title"
msgstr "Biremlekne bolay atap quy"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -8036,53 +8040,53 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
#, fuzzy
msgid "Upload directory"
msgstr "Biremnär törgäge"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8090,85 +8094,85 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
msgid "Proxy username"
msgstr "Atama:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Sersüz"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
msgid "Send error reports"
msgstr "Server ID'e"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL-soraw"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Enable Zero Configuration mode"
@@ -8194,46 +8198,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "LOAD DATA qullanıp CSV"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Qullanma"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Biremlek saqlaw köyläneşe"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV bireme, MS Excel öçen"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -14120,13 +14124,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`%s` atlı tüşäw tezeşläre belän nidider tiskärlek bar"
@@ -15505,6 +15517,12 @@ msgstr "Açıqlama"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "Şmb"
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/ug.po b/po/ug.po
index c9900d8032..3371ac0bab 100644
--- a/po/ug.po
+++ b/po/ug.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2013-11-25 15:29+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Uighur %s:"
msgstr "SQL ئىجرا بولۋاتقان ساندان %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "تاپشۇرۇش"
@@ -3655,7 +3656,7 @@ msgstr "خەتكۈچنى كۆرسىتىش"
msgid "Delete bookmark"
msgstr "ئىزدەش"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3663,21 +3664,21 @@ msgid ""
"configured)."
msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)"
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "مۇلازىمىتېردا ئىنكاس يوق"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "تەپسىلاتلار…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr "تەڭشەك ھۆججىتى ئىچىدىكى ئىشلەنكۈچى ئۇلۈنما كونتىرولى مەغلۇب بولدى."
@@ -3717,9 +3718,9 @@ msgid_plural "%1$s matches in %2$s"
msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3784,16 +3785,16 @@ msgstr "تۈرلەش"
msgid "Search this table"
msgstr "سانداندىن ئىزدەش"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "باشلا"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3801,8 +3802,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "ئالدىنقىسى"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3810,8 +3811,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "كىيىنكى ئاي"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3822,8 +3823,9 @@ msgstr "ئاخىرقىسى"
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of columns"
msgid "Number of rows:"
@@ -3930,16 +3932,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "تاللانغىنى:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3947,7 +3949,7 @@ msgstr "تاللانغىنى:"
msgid "Check All"
msgstr "ھەممىنى تاللاش"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "بېسىپ كۆرسىتىش"
@@ -4050,11 +4052,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4120,8 +4122,8 @@ msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى"
msgid "Index %s has been dropped."
msgstr "ئۆچۈرۈلگەن تېزىسلار %s."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4137,7 +4139,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "مۇلازىمىتېر"
@@ -4149,16 +4151,16 @@ msgid "View"
msgstr "قاراش"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4170,10 +4172,10 @@ msgid "Structure"
msgstr "تۈزۈلىشى"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4181,19 +4183,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "ئىزدەش"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4202,7 +4204,7 @@ msgid "Insert"
msgstr "قىستۇرۇش"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4211,21 +4213,21 @@ msgid "Privileges"
msgstr "ھۇقۇقى"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "ئىشلەملەر"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "ئىز قۇغلاش"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4242,16 +4244,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr "سانلىق مەلۇمات ئامبىرى قۇرۇق!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "تەكشۈرۈش"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "دائىملىق"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4259,18 +4261,18 @@ msgstr "دائىملىق"
msgid "Events"
msgstr "ھادىسە"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "لايىھەلىگۈچ"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Central columns"
msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4278,38 +4280,38 @@ msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش"
msgid "Databases"
msgstr "ساندان"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr ""
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "كۆچۈرۈش"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -4331,7 +4333,7 @@ msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d قۇر قوشۇلدى."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4980,12 +4982,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "ئەڭ چوڭ:%s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4996,28 +4998,28 @@ msgstr "ئەڭ چوڭ:%s%s"
msgid "MySQL said: "
msgstr "MySQL جاۋابى: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "SQL ئىزاھى"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "SQL ئىزاھىىدىن ئاتلاش"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "PHP كودى يوق"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP كودى قۇرۇش"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Print view"
msgctxt "Inline edit query"
@@ -5025,100 +5027,94 @@ msgid "Edit inline"
msgstr "بېسىپ كۆرسىتىش"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "يەكشەنبە"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%يىل %ئاي %كۈن %سائەت:%مىنۇت"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s كۈن, %s سائەت, %s مىنىۇ ۋە %s سېكوند"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "دائىملىق"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "ساندان \"%s\" .غا ئۆتۈش."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "بىر چىكىپ تاللاڭ"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "Tracked tables"
msgid "There are no files to upload!"
msgstr "ئىزلانغان جەدۋەل"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "تازىلاش"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "يازدۇر"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "قۇرۇش"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "ئاخىرقى يېڭلىنىش"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "ئاخىرقى تەكشۈرۈش"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Sort"
-msgid "Start row:"
-msgstr "تۈرلەش"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5143,13 +5139,13 @@ msgstr "مۇشۇ قىممەتنى ئىشلىتىش"
msgid "Rows"
msgstr "سەپ سانى"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "سانلىق مەلۇمات"
@@ -5589,7 +5585,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -6295,10 +6291,10 @@ msgstr "ئاپتۇماتىك ئەسلىگە كەلتۈرۈش شەكلى"
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6768,7 +6764,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6971,864 +6967,872 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "جەدېۋەلنىڭ تىمىسى"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "The primary key has been dropped."
msgid "Primary key default sort order"
msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "ئەسلىگە كەلتۈرۈش يۇلى"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relations"
msgid "Relational display"
msgstr "مۇناسىۋىتى"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Table caption"
msgid "For display Options"
msgstr "جەدېۋەلنىڭ تىمىسى"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authenticating…"
msgid "Authentication method to use."
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "MySQL مۇلازىمىتېرىغا ئۇلىنالمىدى."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Central columns table"
msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "ساندان ئىسمى"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "جەدۋەل تەھلىلى"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Tracked tables"
msgid "Favorites table"
msgstr "ئىزلانغان جەدۋەل"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "جەدۋەللەرنى ئىشلىتىش"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "جەدۋەل ئىزاھى"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Indexes"
msgid "Show hint"
msgstr "تېزىسلار"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
+msgstr ""
+
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
+msgstr ""
+
+#: libraries/config/messages.inc.php:771
+msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "SQL query"
msgid "Retain query box"
msgstr "SQL سورىقى"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Textarea columns"
msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "ئەندىز"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7836,52 +7840,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7889,84 +7893,84 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username:"
msgid "Proxy username"
msgstr "ئابۇنىت ئىسمى:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "پارول"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Could not load default configuration from: %1$s"
msgid "Enable Zero Configuration mode"
@@ -8000,46 +8004,46 @@ msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…"
msgid "Signon authentication"
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "OpenOffice جەدىۋېلى"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "MS Excel دىكى CSVشەكلى"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -13735,13 +13739,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -15076,6 +15088,12 @@ msgstr "ئىزاھات"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Sort"
+msgid "Start row:"
+msgstr "تۈرلەش"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/uk.po b/po/uk.po
index 074a83ea8b..3301008c1e 100644
--- a/po/uk.po
+++ b/po/uk.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-01-02 17:07+0200\n"
"Last-Translator: Сергій Педько \n"
"Language-Team: Ukrainian %s:"
msgstr "SQL-запит до БД %s:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "Виконати запит"
@@ -3458,7 +3459,7 @@ msgstr "Оновити закладку"
msgid "Delete bookmark"
msgstr "Видалити закладку"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3466,19 +3467,19 @@ msgstr ""
"Сервер не відповідає (або локальний сокет сервера MySQL невірно "
"налаштований)."
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "Сервер не відповідає."
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "Будь ласка, перевірте привілеї каталогу містить базу даних."
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Деталі…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Помилка при вказуванні з'єднання для controluser в конфігурації."
@@ -3520,9 +3521,9 @@ msgstr[1] "%1$s співпадіння у %2$s"
msgstr[2] "%1$s співпадінь у %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3576,28 +3577,28 @@ msgstr "Фільтрувати рядки"
msgid "Search this table"
msgstr "Шукати в таблиці"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "Почати"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "Попередній"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "Вперед"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "Кінець"
@@ -3606,8 +3607,9 @@ msgstr "Кінець"
msgid "All"
msgstr "Все"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Число рядків:"
@@ -3705,16 +3707,16 @@ msgid "Query took %01.4f seconds."
msgstr "Запит виконувався %01.4f с."
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "З відміченими:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3722,7 +3724,7 @@ msgstr "З відміченими:"
msgid "Check All"
msgstr "Відмітити все"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Версія для друку"
@@ -3818,11 +3820,11 @@ msgstr "Відсутня інформація про Git!"
msgid "Open new phpMyAdmin window"
msgstr "Відкрити нове вікно phpMyAdmin"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "Натисніть на панелі, щоб прокрутити до початку сторінки"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "З цього моменту Javascript має бути увімкнений!"
@@ -3886,8 +3888,8 @@ msgstr "Первинний ключ було знищено."
msgid "Index %s has been dropped."
msgstr "Індекс %s було знищено."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3904,7 +3906,7 @@ msgstr ""
"Схоже, що індекси %1$s та %2$s ідентичні, тому один із них можна видалити."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Сервер"
@@ -3916,16 +3918,16 @@ msgid "View"
msgstr "Подання"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3937,10 +3939,10 @@ msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3948,19 +3950,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Шукати"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3969,7 +3971,7 @@ msgid "Insert"
msgstr "Вставити"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3978,21 +3980,21 @@ msgid "Privileges"
msgstr "Привілеї"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Операції"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Відстеження"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4009,16 +4011,16 @@ msgstr "Тригери"
msgid "Database seems to be empty!"
msgstr "Порожня база даних!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Запит"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Процедури"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4026,16 +4028,16 @@ msgstr "Процедури"
msgid "Events"
msgstr "Події"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Дизайнер"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "Центральні стовпчики"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4043,38 +4045,38 @@ msgstr "Центральні стовпчики"
msgid "Databases"
msgstr "Бази даних"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Користувачі"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Бінарний журнал"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Реплікація"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Змінні"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Кодування"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "Плагіни"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Двигуни"
@@ -4102,7 +4104,7 @@ msgstr[0] "%1$d рядок додано."
msgstr[1] "%1$d рядків додано."
msgstr[2] "%1$d рядків додано."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4761,12 +4763,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Максимум: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4777,28 +4779,28 @@ msgstr "Максимум: %s%s"
msgid "MySQL said: "
msgstr "Відповідь MySQL: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Тлумачити SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Не тлумачити SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "без PHP коду"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "Створити PHP код"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
@@ -4806,91 +4808,87 @@ msgid "Edit inline"
msgstr "Редагувати індекс"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Нд"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d %Y р., %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s днів, %s годин, %s хвилин і %s секунд"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "Пропущено параметр:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "Перейти до бази даних \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "На функціональність %s впливає відома помилка, див. %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "Клікніть, щоб змінити"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "Переглянути Ваш комп'ютер:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Виберіть з каталога веб-сервера для відвантаження файлів %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Встановлений Вами каталог для завантаження файлів недоступний."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "Немає файлів для відвантаження!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Очистити"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "Виконати"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Друк"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Створення"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Останнє оновлення"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Остання перевірка"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "Початковий рядок:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "Пошук:"
@@ -4913,13 +4911,13 @@ msgstr "Використовувати це значення"
msgid "Rows"
msgstr "Рядки"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Дані"
@@ -5342,7 +5340,7 @@ msgid "Set value: %s"
msgstr "Встановити значення: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Відновити значення за замовчуванням"
@@ -6114,10 +6112,10 @@ msgstr "Налаштувати режим перегляду."
msgid "Customize default options."
msgstr "Налаштувати опції за замовчуванням."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6601,7 +6599,7 @@ msgid "Maximum displayed SQL length"
msgstr "Масимальна довжина SQL що відобразиться"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "Користувач не може встановити більше значення"
@@ -6825,34 +6823,42 @@ msgstr "Посилання для редагування, копіювання
msgid "Where to show the table row links"
msgstr "Де можна відобразити посилання на рядки таблиці"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr "Використати природний порядок сортування імен таблиць та баз даних."
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "Звичайний порядок"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "Використовувати лише піктограми, лише текст або все."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "Таблична панель навігації"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"Використовувати GZip буферизацію виводу для збільшення швидкості HTTP "
"передачі."
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip буферизація виводу"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6860,19 +6866,19 @@ msgstr ""
"[kbd]SMART[/kbd] - тобто зворотній порядок сортування для полів, що мають "
"тип TIME, DATE, DATETIME та TIMESTAMP; у іншому випадку порядок буде прямим."
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Порядок сортування за замовчуванням"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "Використовувати постійне з'єднання з MySQL."
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Постійне з’єднання"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6881,11 +6887,11 @@ msgstr ""
"Вимкнути сповіщення, що відображається на сторінці структури бази даних за "
"відсутності необхідних для зберігання конфігурації phpMyAdmin таблиць."
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Відсутня таблиця для збереження конфігурації phpMyAdmin"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6893,11 +6899,11 @@ msgstr ""
"Вимкнути стандартне попередження при визначенні відмінностей версій "
"бібліотеки MySQL та сервера."
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "Попередження про відмінності сервера та бібліотеки"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6905,27 +6911,27 @@ msgstr ""
"Вимкнути сповіщення, що відображається на сторінці структури бази даних за "
"наявності стовпців таблиці з іменами, які є зарезервованими словами MySQL."
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "Попередження про зарезервоване слово MySQL"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "Як відображати вкладки меню"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "Як відображати різноманітні посилання дій"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Заборонити редагування стовпців BLOB та BINARY."
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "Бінарні колонки захищені"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6936,128 +6942,128 @@ msgstr ""
"використовуватись JavaScript (історію запитів буде втрачено при закритті "
"вікна)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Постійна історія запитів"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "Скільки запитів зберігати в історії."
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Довжина історії запитів"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr "Виберіть функції, які буде використано для перекодування."
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Механізм перекодування"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
"Коли переглядаєте таблиці, порядок сортування кожної таблиці зберігається."
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "Запам'ятати сортування таблиці"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Порядок сортування за замовчуванням"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Повторити заголовки кожних X комірок, [kbd]0[/kbd] відключає цю властивість."
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "Повторити заголовки"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Стовпчик відображення зв'язків"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "Параметри відображення серверів."
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "Редагування сітки: зберегти всі відредаговані комірки зразу"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "Каталог на сервері для збереження експорту."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Зберегти теку"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "Залиште порожнім, якщо не використовується."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "Порядок авторизації хоста"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "Залиште порожнім для налаштувань за замовчуванням."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "Правила авторизації хоста"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Дозволити авторизацію без паролю"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "Дозволити авторизацію для root"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Значення сесії"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "Рядок, що відображається при ідентифікації з допомогою HTTP."
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP область"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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 +7072,19 @@ msgstr ""
"Шлях до конфігураційного файлу [a@http://swekey.com]апаратної аутентифікації "
"SweKey[/a] (не знаходиться в корні)."
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey файл конфігурації"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "Потрібний метод автентифікації."
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Тип аутентифікації"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7086,41 +7092,41 @@ msgstr ""
"Залиште порожнім для вимкнення підтримки [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]bookmark[/a], рекомендується: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Таблиця закладок"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Таблиця інформації про колонки"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "Стискати з'єднання до MySQL сервера."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Стискати з’єднання"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "Спосіб з'єднання з сервером, залиште [kbd]tcp[/kbd], якщо невпевнені."
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Тип з’єднання"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Пароль виділеного користувача"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7128,11 +7134,11 @@ msgstr ""
"Спеціальний користувач MySQL з обмеженими привілеями, детальніше дивіться "
"[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Виділений користувач"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7140,11 +7146,11 @@ msgstr ""
"Альтернативний хост для збереження налаштувань, залиште порожнім для "
"використання вже вказаного хоста."
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "Керування хостом"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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, "
@@ -7154,15 +7160,15 @@ msgstr ""
"залиште порожнім для порта за-замовчуванням, якщо контрольний хост "
"ідентичний хосту."
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "Контрольний порт"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Cховати бази даних, що відповідають регулярному виразу (PCRE)."
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7171,15 +7177,15 @@ msgstr ""
"bugs/2606/]PMA bug tracker[/a] та [a@http://bugs.mysql.com/19588]MySQL Bugs[/"
"a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Вимкнути використання INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Приховати бази даних"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7187,23 +7193,23 @@ msgstr ""
"Залиште порожнім для відключення підтримки історії SQL запитів, "
"пропонується: [kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "Таблиця історії SQL запитів"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "Ім'я хоста, на якому працює MySQL сервер."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Хост сервера"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "URL для виходу"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7211,27 +7217,27 @@ msgstr ""
"Обмежує кількість властивостей таблиці, що зберігаються в базі даних, "
"застарілі записи автоматично видаляються."
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "Максимальна кількість властивостей таблиці, що зберігаються"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Central columns"
msgid "Central columns table"
msgstr "Центральні стовпчики"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank to disable configurable menus feature, suggested: "
@@ -7243,15 +7249,15 @@ msgstr ""
"Залиште порожнім, щоб вимкнути функцію налаштовуваних меню, пропонується: "
"[kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "Спробувати з'єднатись без пароля."
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "З’єднуватись без паролю"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7261,28 +7267,28 @@ msgstr ""
"хочете використовувати, як звичайні літературні символи, тобто "
"використовуйте [kbd]'my\\_db'[/kbd] а не [kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Показати лише перелічені бази даних"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "Залиште порожнім, якщо не використовується config auth."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "Пароль для config auth"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF схема: сторінки таблиці"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -7293,32 +7299,32 @@ msgstr ""
"Для відключення підтримки залиште порожнім. Рекомендується: [kbd]phpmyadmin[/"
"kbd]."
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Ім'я бази даних"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Порт, на якому MySQL сервер слухає, залиште порожнім для значення за-"
"замовчуванням."
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Порт сервера"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "Нещодавно використані таблиці"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" tables' UI preferences across sessions, "
@@ -7330,23 +7336,23 @@ msgstr ""
"Для відключення можливості зберігання налаштувань інтерфейсу таблиць через "
"сесії залиште поле порожнім, рекомендується: [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "Улюблені таблиці"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Таблиця зв'язків"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7354,43 +7360,43 @@ msgstr ""
"Дивіться [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] для прикладу."
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Ім'я сесії для Signon"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "Signon URL-адреса"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Сокет, на якому MySQL сервер слухає, залиште порожнім для значення за-"
"замовчуванням."
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Сокет серверу"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "Активувати SSL для з'єднання з MySQL сервером."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "Використовувати SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "Дизайнер і PDF схема: координати таблиці"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7398,11 +7404,11 @@ msgstr ""
"Таблиця, щоб описати відображувані стовпчики, залиште порожнім для вимкнення "
"підтримки; рекомендовано: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "Таблиця з описами полів"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7410,11 +7416,11 @@ msgstr ""
"Для відключення можливості зберігання налаштувань інтерфейсу таблиць через "
"сесії залиште поле порожнім, рекомендується: [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "Таблиця налаштувань користувацького інтерфейсу"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7422,11 +7428,11 @@ msgstr ""
"Чи буде при створенні бази даних, в журнал першим рядком додано вираз DROP "
"DATABASE IF EXISTS."
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "Додати DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7434,11 +7440,11 @@ msgstr ""
"Чи буде при створенні бази даних, в журнал першим рядком додано вираз DROP "
"DATABASE IF EXISTS."
-#: libraries/config/messages.inc.php:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "Додати DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7446,21 +7452,21 @@ msgstr ""
"Чи буде при створенні вистави, в журнал першим рядком додано вираз DROP VIEW "
"IF EXISTS."
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "Додати DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Визначити список виразів, які використовуються для автоматичного створення "
"нових версій."
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "Стеження за виразами"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7468,54 +7474,54 @@ msgstr ""
"Залиште порожнім, щоб вимкнути функцію відстеження SQL запитів, "
"пропонується: [kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "Таблиця відстежування SQL запитів"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
"Чи механізм відстеження створює версії для таблиць і подань автоматично."
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "Автоматично створювати версії"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "Таблиця збереження налаштувань користувача"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "Таблиця користувачів"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "Таблиця груп користувачів"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7523,33 +7529,33 @@ msgstr ""
"Залиште порожнім, щоб вимкнути функцію приховування/відображення "
"навігаційних елементів, пропонується: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "Прихована таблиця навігаційних елементів"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "Прописаний користувач"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr "Користувацький опис сервера. Залиште пустим, щоб вивести назву хоста."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Повна назва цього сервера"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "Чи слід відображати кнопку \"показати всі (рядки)\"."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Дозволити відображати всі рядки"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7559,54 +7565,54 @@ msgstr ""
"при ідентифікації методом [kbd]config[/kbd] із жорстко прописаним паролем; "
"це не обмежує можливість виконання команди беспосередньо."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Показати форму для зміни паролю"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Показати форму для створення бази даних"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, 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:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Коментарі таблиці"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr "Відобразити або приховати стовпчик \"Час створення\" для всіх таблиць."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "Показати час створення"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr "Відобразити або приховати стовпчик \"Час оновлення\" для всіх таблиць."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "Відобразити \"Час останнього оновлення\""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr "Відобразити або приховати стовпчик \"Час перевірки\" для всіх таблиць."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "Відобразити \"Час перевірки\""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7614,27 +7620,27 @@ msgstr ""
"Визначає чи в режимі редагування/вставки має на початку відображатися тип "
"поля."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "Показувати типи полів"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "Відображати поля функції у режимі редагування/вставки."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Показувати поля функції"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "Чи показувати підказки."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "Відображати підказки"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7642,56 +7648,56 @@ msgstr ""
"Відображає посилання на [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "Показувати посилання phpinfo()"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "Показувати докладну інформацію про сервер MySQL"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
"Визначає, чи потрібно відображати SQL запити, що згенеровані phpMyAdmin."
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Показувати SQL-запити"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
"Визначає, чи має залишатися вікно запиту на екрані після надсилання запиту."
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Залишати вікно запиту"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Дозволити відображення статистики бази даних і таблиць (наприклад, "
"використання простору)."
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Показувати статистику"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Позначити використані таблиці та зробити можливим відображення баз даних із "
"заблокованими таблицями."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Пропускати заблоковані таблиці"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7699,11 +7705,11 @@ msgid ""
"detected."
msgstr "Виводити попередження на головній сторінці у разі виявлення Suhosin."
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Попередження про Suhosin"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7716,13 +7722,13 @@ msgstr ""
"Вимкнути сповіщення, що відображається на сторінці структури бази даних за "
"наявності стовпців таблиці з іменами, які є зарезервованими словами MySQL."
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Термін придатності кукі входу"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7734,11 +7740,11 @@ msgstr ""
"Розмір текстового поля в режимі редагування (у стовпцях); дане значення буде "
"пріоритетним для текстових полів SQL запиту (*2) та для вікна запиту (*1.25)."
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "Стовпців у текстовому полі"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7750,31 +7756,31 @@ msgstr ""
"Розмір текстового поля в режимі редагування (в рядках); дане значення буде "
"пріоритетним для текстових полів SQL запиту (*2) та для вікна запиту (*1.25)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "Рядків у текстовому полі"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr "Заголовок вікна браузера при виборі бази даних."
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "Заголовок вікна браузера за замовчуванням."
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "Заголовок по замовчуванню"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "Заголовок вікна браузера при виборі сервера."
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "Заголовок вікна браузера при виборі таблиці."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7786,29 +7792,29 @@ msgstr ""
"Forwarded-For) заголовку, що прийшов з проксі 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "Список довірених проксі для IP allow/deny"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
"Каталог на сервері, до якого ви можете завантажити файли для подальшого "
"імпорту."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Каталог відвантаження"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "Дозволити пошук по всій базі даних."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Використовувати пошук по базі даних"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7816,27 +7822,27 @@ msgstr ""
"Коли вимкнено, користувачі не зможуть встановити жоден із зазначених нижче "
"параметрів незалежно від значення прапорця праворуч."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "Включення вкладки розробника в налаштуваннях"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Перевірити оновлення"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
"Вмикає можливість перевірки останньої версії phpMyAdmin на головній сторінці."
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7844,30 +7850,30 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "Адреса проксі"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "Ім'я користувача проксі"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "Пароль для аутентифікації на проксі."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "Пароль проксі"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7875,53 +7881,53 @@ msgstr ""
"Увімкнути [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
"стиснення для операцій імпорту та експорту."
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Введіть ваш відкритий ключ для сервісу reCaptcha домена."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "Відкритий ключ для reCaptcha"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Введіть ваш закритий ключ для сервісу reCaptcha домена."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "Закритий ключ для reCaptcha"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "Оберіть дію за замовчуванням під час надсилання звітів про помилки."
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "Надіслати звіти про помилку"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Execute"
msgid "Enter executes queries in console"
msgstr "Виконати"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "Увімкнути режим нульової конфігурації"
@@ -7947,44 +7953,44 @@ msgstr "Авторизація за допомогою HTTP"
msgid "Signon authentication"
msgstr "Авторизація за допомогою Signon"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV, використовуючи LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "Відкрити документ електронної таблиці"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "Швидко"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "Звичайно"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Параметри експорту бази даних"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "CSV для даних MS Excel"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "Текст OpenDocument"
@@ -13758,15 +13764,31 @@ msgstr "Як стандартний запит на огляд даних вик
msgid "Showing as PHP code"
msgstr "Показ у вигляді коду PHP"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"Це виділення не містить унікальні стовпчики. Сітка редагування, прапорець, "
"функції Редагувати, Копіювати та Видаляти недоступні."
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"Це виділення не містить унікальні стовпчики. Сітка редагування, прапорець, "
+"функції Редагувати, Копіювати та Видаляти недоступні."
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблеми з індексами таблиці `%s`"
@@ -15082,6 +15104,10 @@ msgstr "Коментар:"
msgid "Drag to reorder"
msgstr "Перетягніть для зміни порядку."
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "Початковий рядок:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "Виберіть стовпці (принаймні один):"
diff --git a/po/ur.po b/po/ur.po
index 37159234c6..2114900f8c 100644
--- a/po/ur.po
+++ b/po/ur.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-03-27 15:22+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Urdu %s:"
msgstr "کوائفیہ کے لیے %s SQL طلب:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "طلب بھیجیں"
@@ -3658,25 +3659,25 @@ msgstr "نشانی دکھاتے ہوئے"
msgid "Delete bookmark"
msgstr "تلاش"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3718,9 +3719,9 @@ msgstr[0] "%sجدول کے ساتھ مشابہ%s"
msgstr[1] "%sجدول کے ساتھ مشابہات%s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3786,16 +3787,16 @@ msgstr "ابتدائیہ"
msgid "Search this table"
msgstr "کوائفیہ میں تلاش کریں"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "شروع"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -3803,8 +3804,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "پچھلا"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -3812,8 +3813,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "اگلا"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -3824,8 +3825,9 @@ msgstr "اختتام"
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3931,16 +3933,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "مع منتخب:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3948,7 +3950,7 @@ msgstr "مع منتخب:"
msgid "Check All"
msgstr "تمام پڑتال کریں"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "چھپائی منظر"
@@ -4051,11 +4053,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4121,8 +4123,8 @@ msgstr "بنیادی کلید چھوڑ دیا گیا ہے"
msgid "Index %s has been dropped."
msgstr "اشاریہ %s چھوڑ دیا گیا ہے۔"
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4140,7 +4142,7 @@ msgstr ""
"جائے گا۔"
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "سرور"
@@ -4152,16 +4154,16 @@ msgid "View"
msgstr "نقل جدول"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4173,10 +4175,10 @@ msgid "Structure"
msgstr "ساخت"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4184,19 +4186,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "تلاش"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4205,7 +4207,7 @@ msgid "Insert"
msgstr "داخل کریں"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4214,21 +4216,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "عملیات"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4245,16 +4247,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4262,18 +4264,18 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns"
msgstr "فیلڈ کالمز شامل یا ختم کریں"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4281,38 +4283,38 @@ msgstr "فیلڈ کالمز شامل یا ختم کریں"
msgid "Databases"
msgstr "کوائفیے"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr ""
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "چربہ کاری"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -4337,7 +4339,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d صف داخل ہوئی۔"
msgstr[1] "%1$d صفیں داخل ہوئیں۔"
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4992,12 +4994,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "زیادہ سے زیادہ: %s%s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5008,28 +5010,28 @@ msgstr "زیادہ سے زیادہ: %s%s"
msgid "MySQL said: "
msgstr "MySQL نے کہا: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "SQL کی تفصیل بتائیں"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "SQL وضاحت کو چھوڑیں"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "PHP کوڈ کے بغیر"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP کوڈ بنائیں"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit mode"
msgctxt "Inline edit query"
@@ -5037,97 +5039,91 @@ msgid "Edit inline"
msgstr "تدوین موڈ"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "اتوار"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y پر %I:%M %p"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s دن, %s گھنٹے, %s منٹ اور%s سیکنڈ"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "کوائفیہ میں جائیں \"%s\"."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھیں %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "انتخاب کے لیے کلک کریں"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "اپنے کمپیوٹر کو براؤز کریں:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل رسائی نہیں ہے۔"
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no files to upload!"
msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "خالی"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "چھاپیں"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "بنائیں"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "آخری دفعہ کی تازہ کاری"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "آخری دفعہ کی پڑتال"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Startup"
-msgid "Start row:"
-msgstr "ابتدائیہ"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "تلاش کريں:"
@@ -5150,13 +5146,13 @@ msgstr "یہ قدر استعمال کریں"
msgid "Rows"
msgstr "صفیں"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "کوائف"
@@ -5609,7 +5605,7 @@ msgid "Set value: %s"
msgstr "قدر سیٹ کریں: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "طے شدہ قدر بحال کریں"
@@ -6390,10 +6386,10 @@ msgstr "برااؤز موڈ کی تخصیص کریں"
msgid "Customize default options."
msgstr "طے شدہ اختیارات کی تخصیص کریں"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6966,7 +6962,7 @@ msgid "Maximum displayed SQL length"
msgstr "SQL کی زیادہ سے زیادہ لمبائی جو دکھائی جائے"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "صارفین اسے سے زیادہ قدر مقرر نہیں کرسکتے"
@@ -7219,40 +7215,48 @@ msgstr "یہ تدوین، ان لائن تدوین، نقل اور حذف روا
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
#, 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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "قدرتی ترتیب"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:531
#, fuzzy
#| msgid "Use only icons, only text or both"
msgid "Use only icons, only text or both."
msgstr "صرف شبیہے، صرف متن یا دوتوں استعمال کریں"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Iconic navigation bar"
msgid "Table navigation bar"
msgstr "شبیہاتی گشت بار"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
#, 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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip آؤٹ پٹ بفر"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid ""
#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
@@ -7264,21 +7268,21 @@ msgstr ""
"[kbd]SMART[/kbd] - اس اقسام کی کالموں کے لیے نزولی ترتیب type TIME, DATE, "
"DATETIME اور TIMESTAMP, بصورت دیگر صعودی ترتیب"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "طے شدہ چھانٹی ترتیب"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Use persistent connections to MySQL databases."
msgstr "MySQL کوائفیہ سے جڑنے کے لیے بہتر جڑت استعمال کریں"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "بہتر جوڑ"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7292,11 +7296,11 @@ msgstr ""
"اگر phpMyAdmin تشکیل ذخیرہ میں کوئی درکار جداول نہیں ملا جو کہ کوائفیہ "
"تفصیلی ساکت صفحہ میں دکھایا جاتا ہے تو طے شدہ انتباہ کو غیر فعال کریں"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7308,11 +7312,11 @@ msgstr ""
"اگر کوکی توثیق کے لیے mcrypt موجود نہ ہونے کی تنبیہ غیر فعال کرنے کے لیے طے "
"شدہ تنبیہ کو غیرفعال کریں"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7325,29 +7329,29 @@ msgstr ""
"اگر phpMyAdmin تشکیل ذخیرہ میں کوئی درکار جداول نہیں ملا جو کہ کوائفیہ "
"تفصیلی ساکت صفحہ میں دکھایا جاتا ہے تو طے شدہ انتباہ کو غیر فعال کریں"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
#, 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:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "ثنائی کالم کو ممنوع کریں"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7357,49 +7361,49 @@ msgstr ""
"درکار ہوگی). غیرفعال کرنے کی صورت میں یہ جاوا سکرپٹ فنکشن کو استعمال کرتے "
"ہوئے طلب لاگ دکھاتا ہے (دریچہ بند ہونے کی صورت میں ضائع ہوجاتی ہے)."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "مستقل طلب لاگ"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "لاگ میں کتنے طلب رکھے جانے چاہیں"
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "طلب لاگ کی لمبائی"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
#, 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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "ری کوڈ انجن"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "طے شدہ چھانٹی ترتیب"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
#, fuzzy
#| msgid ""
#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@@ -7408,89 +7412,89 @@ msgid ""
msgstr ""
"سرخی کو ہرX خانے کے لیے دہرائیں, [kbd]0[/kbd] اس خاصیت کو غیر فعال کرتا ہے"
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "دہرانے کے لیے سرخیاں"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relations"
msgid "Relational display"
msgstr "تعلقات"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "سرور دکھانے کے اختیارات"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
#, 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:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "پوشہ محفوظ کریں"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "استعمال نہ ہونے کی صورت میں خالی چھوڑ دیں"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "ہوسٹ توثیق حکم"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "طے شدہ کے لیے خالی چھوڑ دیں"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "ہوسٹ توثیق قاعدے"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "پاس ورڈ کے بغیر لاگ ان کی اجازت دیں"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "منتظم لاگ ان کی اجازت دیں"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
#, 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 توثیق کررہا ہو"
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP اختیار"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid ""
#| "The path for the config file for [a@http://swekey.com]SweKey hardware "
@@ -7504,21 +7508,21 @@ msgstr ""
"تشکیل مسل کے لیے جگہ [a@http://swekey.com]SweKey ہاروئیر توثیق[/a] (آپ کے "
"منتظم دستاویز میں موجود نہیں ہے; مجوزہ: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey تشکیل مسل"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "توثیق کا طریقہ جو استعمال ہو"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "توثیق قسم"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
@@ -7530,11 +7534,11 @@ msgstr ""
"نہیں کے لیے خالی چھوڑیں[a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
"a] معاونت، مجوزہ[kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "جدول نشان کریں"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
@@ -7545,35 +7549,35 @@ msgid ""
msgstr ""
"کالم تبصرہ/mime اقسام کے لیے خالی چھوڑیں, مجوزہ: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "کالم معلومات جدول"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "جڑنے کو MySQL سرور کے لیے سکیڑیں"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "جڑنے کو سکیڑیں"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
#, 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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "جڑنے کی قسم"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "صارف پاس ورڈ کنٹرول"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7586,42 +7590,42 @@ msgstr ""
"ایک خاص MySQL صارف مقررہ اجازت نامہ کے ساتھ تشکیل دیا گیا ہے, مزید معلومات "
"یہاں موجود ہیں[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "صارف کو کنٹرول کریں"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "صارف کو کنٹرول کریں"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Control user"
msgid "Control port"
msgstr "صارف کو کنٹرول کریں"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
#, fuzzy
#| msgid "Hide databases matching regular expression (PCRE)"
msgid "Hide databases matching regular expression (PCRE)."
msgstr "وہ کوائفیے چھپائیں جو ریگولر ایکسپریشن سے مطابقت رکھتے ہیں (PCRE)"
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7630,15 +7634,15 @@ msgstr ""
"bugs/2606/]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL "
"نقائص[/a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA کی استعمال کو غیر فعال کریں"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "کوائفیے چھپائیں"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7649,41 +7653,41 @@ msgid ""
msgstr ""
"SQL طلب لاگ معاونت نہ کرنے کے لیے خالی چھوڑیں , مجوزہ: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL طلب لاگ جدول"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
msgstr "جہاں MySQL سرور چل رہا ہے اس کا نام"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "سرور نام"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "لاگ آؤٹ URL"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "ایک جدول فہرست میں جداول دکھانے کی زیادہ سے زیادہ تعداد"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
@@ -7695,13 +7699,13 @@ msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "فیلڈ کالمز شامل یا ختم کریں"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
@@ -7713,36 +7717,36 @@ msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "پاس ورڈ کے بغیر جڑنے کی کوشش کریں"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "پاس ورڈ کے بغیر جڑیں"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
#, fuzzy
#| msgid ""
#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
@@ -7753,33 +7757,33 @@ msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "ڈیٹا بیس"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
#, fuzzy
#| msgid ""
#| "ve blank for no column comments/mime types, suggested: [kbd]_column_info[/"
@@ -7790,13 +7794,13 @@ msgid ""
msgstr ""
"کالم تبصرہ/mime اقسام کے لیے خالی چھوڑیں, مجوزہ: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Recall user name"
msgid "Recently used table"
msgstr "صارف نام یاد کریں"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "ve blank for no column comments/mime types, suggested: [kbd]_column_info[/"
@@ -7807,13 +7811,13 @@ msgid ""
msgstr ""
"کالم تبصرہ/mime اقسام کے لیے خالی چھوڑیں, مجوزہ: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Count tables"
msgid "Favorites table"
msgstr "حداول کی گنتی کریں"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
@@ -7825,43 +7829,43 @@ msgstr ""
"نہیں کے لیے خالی چھوڑیں[a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
"a] معاونت، مجوزہ[kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Enable SSL for connection to MySQL server."
msgstr "جڑنے کو MySQL سرور کے لیے سکیڑیں"
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
@@ -7873,11 +7877,11 @@ msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
#, fuzzy
#| msgid ""
#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
@@ -7889,11 +7893,11 @@ msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
#, fuzzy
#| msgid ""
#| "ve blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -7904,49 +7908,49 @@ msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7957,21 +7961,21 @@ msgid ""
msgstr ""
"SQL طلب لاگ معاونت نہ کرنے کے لیے خالی چھوڑیں , مجوزہ: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
#, fuzzy
#| msgid ""
#| "ve blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -7982,35 +7986,35 @@ msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "جداول استعمال کریں"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
#, fuzzy
#| msgid ""
#| "ve blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -8021,163 +8025,163 @@ msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "جدول تبصرے"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "گرِڈ دکھائیں"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
+msgstr ""
+
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
+msgstr ""
+
+#: libraries/config/messages.inc.php:771
+msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "طلب خانہ چھپائیں"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -8189,11 +8193,11 @@ msgstr ""
"اگر کوکی توثیق کے لیے mcrypt موجود نہ ہونے کی تنبیہ غیر فعال کرنے کے لیے طے "
"شدہ تنبیہ کو غیرفعال کریں"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -8207,57 +8211,57 @@ msgstr ""
"اگر phpMyAdmin تشکیل ذخیرہ میں کوئی درکار جداول نہیں ملا جو کہ کوائفیہ "
"تفصیلی ساکت صفحہ میں دکھایا جاتا ہے تو طے شدہ انتباہ کو غیر فعال کریں"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "لاگ ان کوکی کب تک موجود ہو"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "فیلڈ کالمز شامل یا ختم کریں"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "ڈیفالٹ"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -8265,52 +8269,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8318,34 +8322,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username:"
msgid "Proxy username"
msgstr "صارف نام:"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password:"
msgid "Proxy password"
msgstr "پاس ورڈ:"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -8357,51 +8361,51 @@ msgstr ""
"[a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] درآمد اور برآمد عملیات کے لیے "
"سکڑاؤ فعال کریں"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8427,46 +8431,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Spreadsheet"
msgstr "اوپن دستاویز"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Text"
@@ -14160,13 +14164,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -15518,6 +15530,12 @@ msgstr "تبصرہ"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Startup"
+msgid "Start row:"
+msgstr "ابتدائیہ"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/uz.po b/po/uz.po
index a30282bb53..2f2244e61e 100644
--- a/po/uz.po
+++ b/po/uz.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-11-14 19:09+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Uzbek %s:"
msgstr "\"%s\" маълумотлар базасига SQL-сўров:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "сўровни бажариш"
@@ -3862,7 +3863,7 @@ msgstr "Хатчўпларни кўрсатиш"
msgid "Delete bookmark"
msgstr "Боғлиқликни ўчириш"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3870,21 +3871,21 @@ msgid ""
"configured)."
msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)"
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сервер жавоб бермаяпти"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Тафсилотлар…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"\"config.inc.php\" конфигурацион файлининг \"controluser\" директивасида "
@@ -3927,9 +3928,9 @@ msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s
msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3990,16 +3991,16 @@ msgstr "Фильтр"
msgid "Search this table"
msgstr "Маълумотлар базасида қидириш"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Боши"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -4007,8 +4008,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Орқага"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -4016,8 +4017,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "Кейинги"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -4028,8 +4029,9 @@ msgstr "Охири"
msgid "All"
msgstr "Барча"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows:"
@@ -4146,16 +4148,16 @@ msgid "Query took %01.4f seconds."
msgstr "Сўров %01.4f секунд вақт олди"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Белгиланганларни:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -4163,7 +4165,7 @@ msgstr "Белгиланганларни:"
msgid "Check All"
msgstr "Барчасини белгилаш"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Чоп этиш версияси"
@@ -4274,11 +4276,11 @@ msgstr "Версия ҳақида маълумот"
msgid "Open new phpMyAdmin window"
msgstr "phpMyAdmin дастурини янги ойнада очиш"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4344,8 +4346,8 @@ msgstr "Бирламчи калит ўчирилди."
msgid "Index %s has been dropped."
msgstr "\"%s\" индекси ўчирилди."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4361,7 +4363,7 @@ msgid ""
msgstr "%1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Сервер"
@@ -4373,16 +4375,16 @@ msgid "View"
msgstr "Намойиш"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4394,10 +4396,10 @@ msgid "Structure"
msgstr "Тузилиши"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4405,19 +4407,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Қидириш"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4426,7 +4428,7 @@ msgid "Insert"
msgstr "Қўйиш"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4435,21 +4437,21 @@ msgid "Privileges"
msgstr "Привилегиялар"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Операциялар"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Кузатиш"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4466,16 +4468,16 @@ msgstr "Триггерлар"
msgid "Database seems to be empty!"
msgstr "Маълумотлар базаси бўш!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "Сўров"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Муолажалар"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4483,18 +4485,18 @@ msgstr "Муолажалар"
msgid "Events"
msgstr "Ҳодисалар"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Дизайнер"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Central columns"
msgstr "CHAR майдонидаги устунлар сони"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4502,40 +4504,40 @@ msgstr "CHAR майдонидаги устунлар сони"
msgid "Databases"
msgstr "Маълумотлар базалари"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "Фойдаланувчи"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Иккилик журнал"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Репликация (захира нусха кўчириш)"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "Ўзгарувчилар"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Кодировкалар"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Жадвал турлари"
@@ -4563,7 +4565,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d та қаторлар қўйилди."
msgstr[1] "%1$d та қаторлар қўйилди."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -5222,12 +5224,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Максимал ҳажми: \"%s\"%s\""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5238,28 +5240,28 @@ msgstr "Максимал ҳажми: \"%s\"%s\""
msgid "MySQL said: "
msgstr "MySQL жавоби: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "Сўров таҳлили"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Таҳлил керак эмас"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "PHP-код олиб ташлаш"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP-код"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit mode"
msgctxt "Inline edit query"
@@ -5267,102 +5269,96 @@ msgid "Edit inline"
msgstr "Таҳрирлаш усули"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Якш"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y й., %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "\"%s\" кун, \"%s\" соат, \"%s\" минут ва \"%s\" секунд"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Муолажалар"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "\"%s\" маълумотлар базасига ўтиш."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"\"%s\" параметрининг иши маълум хатоликка олиб келиши мумкин, батафсил "
"маълумот учун қаранг \"%s\""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Танлаш учун сичқонча тугмасини босинг"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "Юклаш каталогидан"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Кўрсатилган каталокка юклаб бўлмади."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no configured servers"
msgid "There are no files to upload!"
msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Тозалаш"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Чоп этиш"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Тузиш"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Охирги янгиланиш"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Охирги текширув"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "Бошлаш"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5387,13 +5383,13 @@ msgstr "Ушбу қийматни ишлатиш"
msgid "Rows"
msgstr "Қаторларсони"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Маълумотлар"
@@ -5865,7 +5861,7 @@ msgid "Set value: %s"
msgstr "Қуйидаги қийматни ўрнатиш: \"%s\""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Асл қийматларни тиклаш"
@@ -6778,10 +6774,10 @@ msgstr "Кўриб чиқиш усулини созлаш"
msgid "Customize default options."
msgstr "Экспорт афзалликларини созлаш"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -7358,7 +7354,7 @@ msgid "Maximum displayed SQL length"
msgstr "SQL сўровининг максимал узунлиги"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -7617,30 +7613,38 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Жадвал сортировкасини ўзгартириш"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:531
#, fuzzy
#| msgid "Use only icons, only text or both"
msgid "Use only icons, only text or both."
msgstr "Фақат пиктограмма, фақат матн ёки ҳар иккисини ишлатиш"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Iconic navigation bar"
msgid "Table navigation bar"
msgstr "Пиктограммали навигация менюси"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
#, fuzzy
#| msgid "use GZip output buffering for increased speed in HTTP transfers"
msgid "Use GZip output buffering for increased speed in HTTP transfers."
@@ -7648,11 +7652,11 @@ msgstr ""
"HTTP орқали маълумот узатишда юқори тезликка эришиш учун GZip буферизациядан "
"фойдаланинг"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip буферизация"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid ""
#| "d]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, "
@@ -7664,74 +7668,74 @@ msgstr ""
"[kbd]SMART[/kbd] – яъни, TIME, DATE, DATETIME ва TIMESTAMP туридаги "
"майдонлар учун камайиш тартибида, акс ҳолда кўпайиш тартибида"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Асл тартиблаш қоидаси"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Use persistent connections to MySQL databases."
msgstr "MySQL маълумотлар базаларида доимий уланишлардан фойдаланиш"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Доимий уланишлар"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
#, fuzzy
#| msgid "Allow to display all the rows"
msgid "How to display the menu tabs"
msgstr "Барча қаторларни кўрсатишга рухсат бериш"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
#, fuzzy
#| msgid "Disallow BLOB and BINARY fields from editing"
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "BLOB ва BINARY майдонларини таҳирлашни ман этиш"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
#, fuzzy
#| msgid "Protect binary fields"
msgid "Protect binary columns"
msgstr "Бинар (иккилик) майдонларни ҳимоялаш"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
#, fuzzy
#| msgid ""
#| "ble if you want DB-based query history (requires phpMyAdmin configuration "
@@ -7746,148 +7750,148 @@ msgstr ""
"танловни ёқинг (pmadb талаб этилади). Ушбу танлов ўчирилган бўлса, ойна "
"ёпилган заҳоти сўровлар тарихи йўқолади."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Доимий сўровлар тарихи"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "Журналда сақланадиган сўровлар сони"
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "Сўровлар тарихи узунлиги"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
#, 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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Кодировкалаш функцияси"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Жадвал номини ўзгартириш"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Асл тартиблаш қоидаси"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Оқимли тиклаш"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display"
msgstr "Алоқадор майдон қиймати"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "Серверлар кўринишини созлаш"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
#, 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:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Сақлаш директорияси"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "Агар ишлатилмаса бўш қолдиринг"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
#, fuzzy
#| msgid "Host authentication order"
msgid "Host authorization order"
msgstr "Аутентификация тартиби"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "Асл қоидаларни ишлатиш учун бўш қолдиринг"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
#, fuzzy
#| msgid "Host authentication rules"
msgid "Host authorization rules"
msgstr "Аутентификация қоидалари"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Паролсиз қиришга рухсат бериш"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "\"root\"га киришга рухсат бериш"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Сессия қийматлари"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
#, 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 Авторизация Бўлими номи"
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP Бўлими"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid ""
#| "The path for the config file for [a@http://swekey.com]SweKey hardware "
@@ -7902,21 +7906,21 @@ msgstr ""
"файл йўли (ҳужжатлар каталогига жойлаштирилмаган; тавсия этилади: /etc/"
"swekey.conf)"
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "\"SweKey\" конфигурация файли"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "Фойдаланиладиган аутентификация усули"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Аутентификация усули"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
@@ -7928,11 +7932,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/bookmark]Хатчўп[/a] ишлатмаслик учун бўш "
"қолдиринг, асли: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Хатчўплар жадвали"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
@@ -7944,35 +7948,35 @@ msgstr ""
"Устун изоҳлари/\"mime\"-турлари ҳақидаги маълумотларни ишлатмаслик учун бўш "
"қолдиринг, асли: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Устун маълумотлари жадвали"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "MySQL сервеига уланишни қисиш"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Уланишни қисиш"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
#, 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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Уланиш тури"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Назорат фойдаланувчиси пароли"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7986,43 +7990,43 @@ msgstr ""
"батафсил маълумот [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/"
"a]да мавжуд"
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Назорат фойдаланувчиси"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "Назорат фойдаланувчиси"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Control user"
msgid "Control port"
msgstr "Назорат фойдаланувчиси"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
#, fuzzy
#| msgid "Hide databases matching regular expression (PCRE)"
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
"Мунтазам иборалар(PCRE)га тўғри келадиган маълумотлар базаларини яшириш"
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -8031,15 +8035,15 @@ msgstr ""
"bugs/2606/]\"PMA bug tracker\"[/a] ва [a@http://bugs.mysql.com/19588]\"MySQL "
"Bugs\"[/a]ларга қаранг"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA ишлатишни ўчириш"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Базаларни яшириш"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -8051,43 +8055,43 @@ msgstr ""
"Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл "
"қиймати: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL сўровлари тарихи жадвали"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
msgstr "MySQL сервери ишлаётган хост номи"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Сервер хост номи"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "Чиқиш URL"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "Тобе сервер статуси жадвалини кўриш"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -8098,13 +8102,13 @@ msgstr ""
"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: "
"[kbd]\"pma_pdf_pages\"[/kbd]"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Central columns table"
msgstr "CHAR майдонидаги устунлар сони"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -8116,17 +8120,17 @@ msgstr ""
"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: "
"[kbd]\"pma_table_coords\"[/kbd]"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "Паролсиз уланишга ҳаракат қилиш"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Паролсиз уланиш"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
#, fuzzy
#| msgid ""
#| " can use MySQL wildcard characters (% and _), escape them if you want use "
@@ -8140,22 +8144,22 @@ msgstr ""
"олдига тескари эгри чизиқ (\\) қўйишингиз керак, масалан \\\"my\\_db\\"
"\" (лекин \"my_db\" эмас)"
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Фақат рўйхатдаги базаларни кўрсатиш"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr ""
"Агар \"config\" аутентификация усулидан фойдаланмасангиз, бўш қолдиринг"
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "\"config\" аутентификация усули пароли"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -8165,11 +8169,11 @@ msgstr ""
"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: "
"[kbd]\"pma_pdf_pages\"[/kbd]"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF-схема: саҳифалар жадвали"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
@@ -8185,25 +8189,25 @@ msgstr ""
"қаранг. Агар фойдаланмасангиз, бўшқолдиринг. Асл қиймати: [kbd]\"phpmyadmin"
"\"[/kbd]"
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "маълумотлар базаси номи"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
#, 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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Сервер порти"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -8214,13 +8218,13 @@ msgstr ""
"Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл "
"қиймати: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Recall user name"
msgid "Recently used table"
msgstr "Фойдаланувчи номини чақириб олиш"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -8231,13 +8235,13 @@ msgstr ""
"Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл "
"қиймати: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Ўзгарувчилар"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -8249,11 +8253,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]Алоқа боғланишлари[/a]ни "
"ишлатмаслик учун, бўш қолдиринг, асл қиймати: [kbd]\"pma_relation\"[/kbd]"
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Алоқалар жадвали"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -8265,25 +8269,25 @@ msgstr ""
"Намуна учун [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]аутентификация усуллари[/a]га қаранг"
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Кириш сессияси номи"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "Кириш URL"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
#, 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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Сервер сокети"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, fuzzy
#| msgid "Enable SSL for connection to MySQL server"
msgid "Enable SSL for connection to MySQL server."
@@ -8291,11 +8295,11 @@ msgstr ""
"SSL (Secure Sockets Layer - ҳимояланган сокетлар протоколи) уланишдан "
"фойдаланиш"
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "SSL уланишдан фойдаланиш"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -8307,13 +8311,13 @@ msgstr ""
"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: "
"[kbd]\"pma_table_coords\"[/kbd]"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "PDF-схема: жадвал координаталари"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
#, fuzzy
#| msgid ""
#| "le to describe the display fields, leave blank for no support; gested: "
@@ -8325,13 +8329,13 @@ msgstr ""
"Кўрсатиладиган майдонлар шарҳлари сақланадиган жадвал, ишлатмаслик учун бўш "
"қолдиринг, асл қиймати: [kbd]\"pma_table_info\"[/kbd]"
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Display fields table"
msgid "Display columns table"
msgstr "Майдонлар жадвалини кўрсатиш"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -8342,53 +8346,53 @@ msgstr ""
"Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл "
"қиймати: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Жадвални дефрагментациялаш"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Тавсиф"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -8399,25 +8403,25 @@ msgstr ""
"Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл "
"қиймати: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
#, fuzzy
#| msgid "SQL query history table"
msgid "SQL query tracking table"
msgstr "SQL сўровлари тарихи жадвали"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Автоматик тиклаш режими"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -8428,37 +8432,37 @@ msgstr ""
"Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл "
"қиймати: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Жадвалларни ишлатиш"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Хостлар жадвалидан фойдаланиш"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -8469,35 +8473,35 @@ msgstr ""
"Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл "
"қиймати: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "\"config\" аутентификация усули фойдаланувчиси"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr "MySQL сервери ишлаётган хост сервер номи."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Ушбу сервернинг кенгайтирилган номи"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
#, 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 "Фойдаланувчига \"барча (ёзувлар)ни кўрсатиш\" тугмаси кўрсатилсинми?"
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Барча қаторларни кўрсатишга рухсат бериш"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
#, fuzzy
#| msgid ""
#| "Please note that enabling this has no effect with [kbd]config[/kbd] "
@@ -8512,87 +8516,87 @@ msgstr ""
"Эсда тутинг, ушбу танловни ёқишингиз [kbd]\"config\"[/kbd] аутентификация "
"усулидаги паролга таъсир этмайди"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Паролни ўзгартириш формасини кўрсатиш"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Маълумотлар базаси тузиш формасини кўрсатиш"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Жадвал изоҳи"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show versions"
msgid "Show Creation timestamp"
msgstr "Версияларни кўрсатиш"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Уланган бош серверларни кўрсатиш"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Очиқ жадваллар рўйхати"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
#, 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:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Фукнциялармайдонини кўрсатиш"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Тўрни кўрсатиш"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -8604,15 +8608,15 @@ msgstr ""
"[a@http://php.net/manual/function.phpinfo.php]\"phpinfo()\"[/a] функцияси "
"натижасига боғ кўрсатиш"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "\"phpinfo()\" функциясига боғ кўрсатиш"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "MySQL сервери ҳақида батафсил маълумот кўрсатиш"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -8621,22 +8625,22 @@ msgid ""
msgstr ""
"phpMyAdmin томонидан генерация қилинган SQL сўровларини кўрсатиш керакми"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Show SQL сўровларини кўрсатиш"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "SQL Query box"
msgid "Retain query box"
msgstr "SQL сўровлари қутиси"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
#, fuzzy
#| msgid "Allow to display database and table statistics (eg. space usage)"
msgid "Allow to display database and table statistics (eg. space usage)."
@@ -8644,11 +8648,11 @@ msgstr ""
"Маълумотлар базалари ва жадваллар статискасини (масалан, дискда эгаллаган "
"жойи) кўрсатиш"
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Статискани кўрсатиш"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
#, fuzzy
#| msgid ""
#| "Mark used tables and make it possible to show databases with locked tables"
@@ -8658,11 +8662,11 @@ msgstr ""
"Ишлатилаётган жадвалларни белгилаш ва қулфланган жадваллари мавжуд бўлган "
"маълумотлар базаларини кўришга имкон бериш"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Қулфланган жадвалларни ташлаб кетишлик"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
@@ -8674,11 +8678,11 @@ msgstr ""
"[kbd]cookie[/kbd]-аутентификация усулида cookie-ларни шифрлаш учун "
"ишлатиладиган сирли ибора"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
@@ -8691,59 +8695,59 @@ msgstr ""
"[kbd]cookie[/kbd]-аутентификация усулида cookie-ларни шифрлаш учун "
"ишлатиладиган сирли ибора"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "cookie-логин яроқлиги"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Textarea columns"
msgstr "CHAR майдонидаги устунлар сони"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
#, fuzzy
#| msgid "CHAR textarea rows"
msgid "Textarea rows"
msgstr "CHAR майдонидаги қаторлар сони"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
#| msgid "Default table tab"
msgid "Default title"
msgstr "Жадвал ёрлиғи"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
#, fuzzy
#| msgid ""
#| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following "
@@ -8761,57 +8765,57 @@ msgstr ""
"келаётган HTTP_X_FORWARDED_FOR (X-Forwarded-For) сарлавҳани ишончли деб "
"қабул қилишини таъминлайди: [br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "IP бўйича рухсат бериш/рад этиш учун ишонарли прокси-серверлар рўйхати"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
#, 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:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Импорт директорияси"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
#, fuzzy
#| msgid "Allow for searching inside the entire database"
msgid "Allow for searching inside the entire database."
msgstr ""
"Маълумотлар базаси ичидаги маълумотларни тўлалигича қидиришга рухсат бериш"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Базани қидиришдан фойдаланиш"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Охирги версияни текшириш"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8819,34 +8823,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "Фойдаланувчи"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Парол"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8858,54 +8862,54 @@ msgstr ""
"Импорт ва экспорт операциялари учун [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] қисишни ёқиш"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "Сервер порти"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL сўровлари"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8941,48 +8945,48 @@ msgstr "Аутентификация тартиби"
msgid "Signon authentication"
msgstr "Аутентификация тартиби"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "\"LOAD DATA\" ишлатилган CSV"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Open Document жадвали"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Рангни танлаш"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Маълумотлар базаси экспорт параметрлари"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "MS Excel учун CSV"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -15254,13 +15258,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "PHP-код сифатида кўрсатиш"
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`\"%s\"` жадвалидаги индексларда муаммо мавжуд"
@@ -16706,6 +16718,12 @@ msgstr "Изоҳ"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "Бошлаш"
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/uz@latin.po b/po/uz@latin.po
index 18b0458552..344365402b 100644
--- a/po/uz@latin.po
+++ b/po/uz@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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-11-05 10:33+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Uzbek (latin) %s:"
msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "so‘rovni bajarish"
@@ -3879,7 +3880,7 @@ msgstr "Xatcho‘plarni ko‘rsatish"
msgid "Delete bookmark"
msgstr "Bog‘liqlikni o‘chirish"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3887,21 +3888,21 @@ msgid ""
"configured)."
msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)"
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Server javob bermayapti"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "Tafsilotlar…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"\"config.inc.php\" konfiguratsion faylining \"controluser\" direktivasida "
@@ -3945,9 +3946,9 @@ msgstr[0] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta"
msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -4016,16 +4017,16 @@ msgstr "Filtr"
msgid "Search this table"
msgstr "Ma`lumotlar bazasida qidirish"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Boshi"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
#, fuzzy
#| msgid "Previous"
@@ -4033,8 +4034,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Orqaga"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
#, fuzzy
#| msgid "Next"
@@ -4042,8 +4043,8 @@ msgctxt "Next page"
msgid "Next"
msgstr "Keyingi"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
#, fuzzy
#| msgid "End"
msgctxt "Last page"
@@ -4054,8 +4055,9 @@ msgstr "Oxiri"
msgid "All"
msgstr "Barcha"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows:"
@@ -4172,16 +4174,16 @@ msgid "Query took %01.4f seconds."
msgstr "So‘rov %01.4f sekund vaqt oldi"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "Belgilanganlarni:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -4189,7 +4191,7 @@ msgstr "Belgilanganlarni:"
msgid "Check All"
msgstr "Barchasini belgilash"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "Chop etish versiyasi"
@@ -4300,11 +4302,11 @@ msgstr "Versiya haqida ma`lumot"
msgid "Open new phpMyAdmin window"
msgstr "phpMyAdmin dasturini yangi oynada ochish"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
#, fuzzy
#| msgid "Cookies must be enabled past this point."
@@ -4370,8 +4372,8 @@ msgstr "Birlamchi kalit o‘chirildi."
msgid "Index %s has been dropped."
msgstr "\"%s\" indeksi o‘chirildi."
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -4387,7 +4389,7 @@ msgid ""
msgstr "%1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "Server"
@@ -4399,16 +4401,16 @@ msgid "View"
msgstr "Namoyish"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -4420,10 +4422,10 @@ msgid "Structure"
msgstr "Tuzilishi"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -4431,19 +4433,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "Qidirish"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -4452,7 +4454,7 @@ msgid "Insert"
msgstr "Qo‘yish"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -4461,21 +4463,21 @@ msgid "Privileges"
msgstr "Privilegiyalar"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "Operatsiyalar"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "Kuzatish"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4492,16 +4494,16 @@ msgstr "Triggerlar"
msgid "Database seems to be empty!"
msgstr "Ma`lumotlar bazasi bo‘sh!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "So‘rov"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "Muolajalar"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4509,18 +4511,18 @@ msgstr "Muolajalar"
msgid "Events"
msgstr "Hodisalar"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "Dizayner"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Central columns"
msgstr "CHAR maydonidagi ustunlar soni"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4528,40 +4530,40 @@ msgstr "CHAR maydonidagi ustunlar soni"
msgid "Databases"
msgstr "Ma`lumotlar bazalari"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
#, fuzzy
#| msgid "User"
msgid "Users"
msgstr "Foydalanuvchi"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "Ikkilik jurnal"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "Replikatsiya (zaxira nusxa ko‘chirish)"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "O‘zgaruvchilar"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "Kodirovkalar"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "Jadval turlari"
@@ -4589,7 +4591,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] "%1$d ta qatorlar qo‘yildi."
msgstr[1] "%1$d ta qatorlar qo‘yildi."
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -5249,12 +5251,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "Maksimal hajmi: \"%s\"%s\""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -5265,28 +5267,28 @@ msgstr "Maksimal hajmi: \"%s\"%s\""
msgid "MySQL said: "
msgstr "MySQL javobi: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "So‘rov tahlili"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "Tahlil kerak emas"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "PHP-kod olib tashlash"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "PHP-kod"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit mode"
msgctxt "Inline edit query"
@@ -5294,102 +5296,96 @@ msgid "Edit inline"
msgstr "Tahrirlash usuli"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "Yaksh"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y y., %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "\"%s\" kun, \"%s\" soat, \"%s\" minut va \"%s\" sekund"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Muolajalar"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "\"%s\" ma`lumotlar bazasiga o‘tish."
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"\"%s\" parametrining ishi ma`lum xatolikka olib kelishi mumkin, batafsil "
"ma`lumot uchun qarang \"%s\""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Tanlash uchun sichqoncha tugmasini bosing"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "Yuklash katalogidan"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi."
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
#, fuzzy
#| msgid "There are no configured servers"
msgid "There are no files to upload!"
msgstr "Bironta ham konfiguratsiyalangan server mavjud emas"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "Tozalash"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "Chop etish"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "Tuzish"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "Oxirgi yangilanish"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "Oxirgi tekshiruv"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start"
-msgid "Start row:"
-msgstr "Boshlash"
-
#: libraries/browse_foreigners.lib.php:136
#, fuzzy
#| msgid "Search"
@@ -5414,13 +5410,13 @@ msgstr "Ushbu qiymatni ishlatish"
msgid "Rows"
msgstr "Qatorlarsoni"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "Ma`lumotlar"
@@ -5893,7 +5889,7 @@ msgid "Set value: %s"
msgstr "Quyidagi qiymatni o‘rnatish: \"%s\""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "Asl qiymatlarni tiklash"
@@ -6810,10 +6806,10 @@ msgstr "Ko‘rib chiqish usulini sozlash"
msgid "Customize default options."
msgstr "Eksport afzalliklarini sozlash"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -7393,7 +7389,7 @@ msgid "Maximum displayed SQL length"
msgstr "SQL so‘rovining maksimal uzunligi"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -7653,30 +7649,38 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Jadval sortirovkasini o‘zgartirish"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:531
#, fuzzy
#| msgid "Use only icons, only text or both"
msgid "Use only icons, only text or both."
msgstr "Faqat piktogramma, faqat matn yoki har ikkisini ishlatish"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
#, fuzzy
#| msgid "Iconic navigation bar"
msgid "Table navigation bar"
msgstr "Piktogrammali navigatsiya menyusi"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
#, fuzzy
#| msgid "use GZip output buffering for increased speed in HTTP transfers"
msgid "Use GZip output buffering for increased speed in HTTP transfers."
@@ -7684,11 +7688,11 @@ msgstr ""
"HTTP orqali ma`lumot uzatishda yuqori tezlikka erishish uchun GZip "
"buferizatsiyadan foydalaning"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip buferizatsiya"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid ""
#| "d]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, "
@@ -7700,74 +7704,74 @@ msgstr ""
"[kbd]SMART[/kbd] – ya`ni, TIME, DATE, DATETIME va TIMESTAMP turidagi "
"maydonlar uchun kamayish tartibida, aks holda ko‘payish tartibida"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "Asl tartiblash qoidasi"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Use persistent connections to MySQL databases."
msgstr "MySQL ma`lumotlar bazalarida doimiy ulanishlardan foydalanish"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "Doimiy ulanishlar"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
#, fuzzy
#| msgid "Allow to display all the rows"
msgid "How to display the menu tabs"
msgstr "Barcha qatorlarni ko‘rsatishga ruxsat berish"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
#, fuzzy
#| msgid "Disallow BLOB and BINARY fields from editing"
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "BLOB va BINARY maydonlarini tahirlashni man etish"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
#, fuzzy
#| msgid "Protect binary fields"
msgid "Protect binary columns"
msgstr "Binar (ikkilik) maydonlarni himoyalash"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
#, fuzzy
#| msgid ""
#| "ble if you want DB-based query history (requires phpMyAdmin configuration "
@@ -7782,137 +7786,137 @@ msgstr ""
"tanlovni yoqing (pmadb talab etiladi). Ushbu tanlov o‘chirilgan bo‘lsa, oyna "
"yopilgan zahoti so‘rovlar tarixi yo‘qoladi."
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "Doimiy so‘rovlar tarixi"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "Jurnalda saqlanadigan so‘rovlar soni"
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "So‘rovlar tarixi uzunligi"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
#, fuzzy
#| msgid "Select which functions will be used for character set conversion"
msgid "Select which functions will be used for character set conversion."
msgstr ""
"Kodirovkalarni bir-biriga o‘tkazishda foydalaniladigan funksiyalarni tanlang"
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "Kodirovkalash funksiyasi"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Jadval nomini o‘zgartirish"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Asl tartiblash qoidasi"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Oqimli tiklash"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display"
msgstr "Aloqador maydon qiymati"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "Serverlar ko‘rinishini sozlash"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
#, fuzzy
#| msgid "Directory where exports can be saved on server"
msgid "Directory where exports can be saved on server."
msgstr "Serverdagi eksport fayllar saqlanadigan direktoriya"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "Saqlash direktoriyasi"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "Agar ishlatilmasa bo‘sh qoldiring"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
#, fuzzy
#| msgid "Host authentication order"
msgid "Host authorization order"
msgstr "Autentifikatsiya tartibi"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "Asl qoidalarni ishlatish uchun bo‘sh qoldiring"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
#, fuzzy
#| msgid "Host authentication rules"
msgid "Host authorization rules"
msgstr "Autentifikatsiya qoidalari"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "Parolsiz qirishga ruxsat bеrish"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "\"root\"ga kirishga ruxsat berish"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Sessiya qiymatlari"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
#, 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."
@@ -7920,11 +7924,11 @@ msgstr ""
"HTTP Avtorizatsiya vaqtida ko‘rsatiladigan Oddiy HTTP Avtorizatsiya Bo‘limi "
"nomi"
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP Bo‘limi"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid ""
#| "The path for the config file for [a@http://swekey.com]SweKey hardware "
@@ -7939,21 +7943,21 @@ msgstr ""
"konfiguratsion fayl yo‘li (hujjatlar katalogiga joylashtirilmagan; tavsiya "
"etiladi: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "\"SweKey\" konfiguratsiya fayli"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "Foydalaniladigan autentifikatsiya usuli"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Autentifikatsiya usuli"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
@@ -7965,11 +7969,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/bookmark]Xatcho‘p[/a] ishlatmaslik uchun "
"bo‘sh qoldiring, asli: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "Xatcho‘plar jadvali"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
@@ -7981,35 +7985,35 @@ msgstr ""
"Ustun izohlari/\"mime\"-turlari haqidagi ma`lumotlarni ishlatmaslik uchun "
"bo‘sh qoldiring, asli: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "Ustun ma`lumotlari jadvali"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "MySQL serveiga ulanishni qisish"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "Ulanishni qisish"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
#, 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 "Serverga ulanish turi, agar bilmasangiz, [kbd]tcp[/kbd] deb qoldiring"
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "Ulanish turi"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "Nazorat foydalanuvchisi paroli"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -8023,43 +8027,43 @@ msgstr ""
"batafsil ma`lumot [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/"
"a]da mavjud"
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "Nazorat foydalanuvchisi"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "Nazorat foydalanuvchisi"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
#, fuzzy
#| msgid "Control user"
msgid "Control port"
msgstr "Nazorat foydalanuvchisi"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
#, fuzzy
#| msgid "Hide databases matching regular expression (PCRE)"
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
"Muntazam iboralar(PCRE)ga to‘g‘ri keladigan ma`lumotlar bazalarini yashirish"
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -8068,15 +8072,15 @@ msgstr ""
"bugs/2606/]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL "
"Bugs\"[/a]larga qarang"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA ishlatishni o‘chirish"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "Bazalarni yashirish"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -8088,43 +8092,43 @@ msgstr ""
"Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, "
"asl qiymati: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL so‘rovlari tarixi jadvali"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
msgstr "MySQL sеrvеri ishlayotgan xost nomi"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "Sеrvеr xost nomi"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "Chiqish URL"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "Tobе sеrvеr statusi jadvalini ko‘rish"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -8135,13 +8139,13 @@ msgstr ""
"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: "
"[kbd]\"pma_pdf_pages\"[/kbd]"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Central columns table"
msgstr "CHAR maydonidagi ustunlar soni"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -8153,17 +8157,17 @@ msgstr ""
"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: "
"[kbd]\"pma_table_coords\"[/kbd]"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "Parolsiz ulanishga harakat qilish"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "Parolsiz ulanish"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
#, fuzzy
#| msgid ""
#| " can use MySQL wildcard characters (% and _), escape them if you want use "
@@ -8177,22 +8181,22 @@ msgstr ""
"oldiga teskari egri chiziq (\\) qo‘yishingiz kerak, masalan \\\"my\\_db\\"
"\" (lekin \"my_db\" emas)"
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "Faqat ro‘yxatdagi bazalarni ko‘rsatish"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr ""
"Agar \"config\" autentifikatsiya usulidan foydalanmasangiz, bo‘sh qoldiring"
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "\"config\" autentifikatsiya usuli paroli"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -8202,11 +8206,11 @@ msgstr ""
"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: "
"[kbd]\"pma_pdf_pages\"[/kbd]"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF-sxema: sahifalar jadvali"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
@@ -8222,25 +8226,25 @@ msgstr ""
"a]ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: "
"[kbd]\"phpmyadmin\"[/kbd]"
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "ma`lumotlar bazasi nomi"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
#, 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 serveri tinglaydigan port, asl qiymatni qoldirish uchun bo‘sh qoldiring"
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "Server porti"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -8251,13 +8255,13 @@ msgstr ""
"Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, "
"asl qiymati: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
#, fuzzy
#| msgid "Recall user name"
msgid "Recently used table"
msgstr "Foydalanuvchi nomini chaqirib olish"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -8268,13 +8272,13 @@ msgstr ""
"Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, "
"asl qiymati: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "O‘zgaruvchilar"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -8286,11 +8290,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]Aloqa bog‘lanishlari[/a]ni "
"ishlatmaslik uchun, bo‘sh qoldiring, asl qiymati: [kbd]\"pma_relation\"[/kbd]"
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "Aloqalar jadvali"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -8302,25 +8306,25 @@ msgstr ""
"Namuna uchun [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]autentifikatsiya usullari[/a]ga qarang"
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Kirish sessiyasi nomi"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "Kirish URL"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
#, 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 serveri tinglaydigan soket, asl qiymati uchun bo‘sh qoldiring"
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "Server soketi"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, fuzzy
#| msgid "Enable SSL for connection to MySQL server"
msgid "Enable SSL for connection to MySQL server."
@@ -8328,11 +8332,11 @@ msgstr ""
"SSL (Secure Sockets Layer - himoyalangan soketlar protokoli) ulanishdan "
"foydalanish"
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "SSL ulanishdan foydalanish"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -8344,13 +8348,13 @@ msgstr ""
"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: "
"[kbd]\"pma_table_coords\"[/kbd]"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "PDF-sxema: jadval koordinatalari"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
#, fuzzy
#| msgid ""
#| "le to describe the display fields, leave blank for no support; gested: "
@@ -8362,13 +8366,13 @@ msgstr ""
"Ko‘rsatiladigan maydonlar sharhlari saqlanadigan jadval, ishlatmaslik uchun "
"bo‘sh qoldiring, asl qiymati: [kbd]\"pma_table_info\"[/kbd]"
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
#, fuzzy
#| msgid "Display fields table"
msgid "Display columns table"
msgstr "Maydonlar jadvalini ko‘rsatish"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -8379,53 +8383,53 @@ msgstr ""
"Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, "
"asl qiymati: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Jadvalni defragmentatsiyalash"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Tavsif"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -8436,25 +8440,25 @@ msgstr ""
"Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, "
"asl qiymati: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
#, fuzzy
#| msgid "SQL query history table"
msgid "SQL query tracking table"
msgstr "SQL so‘rovlari tarixi jadvali"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Avtomatik tiklash rejimi"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -8465,37 +8469,37 @@ msgstr ""
"Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, "
"asl qiymati: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Jadvallarni ishlatish"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Xostlar jadvalidan foydalanish"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -8506,36 +8510,36 @@ msgstr ""
"Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, "
"asl qiymati: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "\"config\" autentifikatsiya usuli foydalanuvchisi"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr "MySQL serveri ishlayotgan xost server nomi."
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "Ushbu serverning kengaytirilgan nomi"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
#, 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 ""
"Foydalanuvchiga \"barcha (yozuvlar)ni ko‘rsatish\" tugmasi ko‘rsatilsinmi?"
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "Barcha qatorlarni ko‘rsatishga ruxsat berish"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
#, fuzzy
#| msgid ""
#| "Please note that enabling this has no effect with [kbd]config[/kbd] "
@@ -8550,87 +8554,87 @@ msgstr ""
"Esda tuting, ushbu tanlovni yoqishingiz [kbd]\"config\"[/kbd] "
"autentifikatsiya usulidagi parolga ta`sir etmaydi"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "Parolni o‘zgartirish formasini ko‘rsatish"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "Ma`lumotlar bazasi tuzish formasini ko‘rsatish"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Jadval izohi"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Show versions"
msgid "Show Creation timestamp"
msgstr "Vеrsiyalarni ko‘rsatish"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Ochiq jadvallar ro‘yxati"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
#, fuzzy
#| msgid "Display the function fields in edit/insert mode"
msgid "Display the function fields in edit/insert mode."
msgstr "Tahrirlash/qo‘yish rejimida funksiyalar maydonini ko‘rsatish"
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "Fuknsiyalarmaydonini ko‘rsatish"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "To‘rni ko‘rsatish"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -8642,15 +8646,15 @@ msgstr ""
"[a@http://php.net/manual/function.phpinfo.php]\"phpinfo()\"[/a] funksiyasi "
"natijasiga bog‘ ko‘rsatish"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "\"phpinfo()\" funksiyasiga bog‘ ko‘rsatish"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "MySQL serveri haqida batafsil ma`lumot ko‘rsatish"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -8659,22 +8663,22 @@ msgid ""
msgstr ""
"phpMyAdmin tomonidan generatsiya qilingan SQL so‘rovlarini ko‘rsatish kerakmi"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "Show SQL so‘rovlarini ko‘rsatish"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "SQL Query box"
msgid "Retain query box"
msgstr "SQL so‘rovlari qutisi"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
#, fuzzy
#| msgid "Allow to display database and table statistics (eg. space usage)"
msgid "Allow to display database and table statistics (eg. space usage)."
@@ -8682,11 +8686,11 @@ msgstr ""
"Ma`lumotlar bazalari va jadvallar statiskasini (masalan, diskda egallagan "
"joyi) ko‘rsatish"
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "Statiskani ko‘rsatish"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
#, fuzzy
#| msgid ""
#| "Mark used tables and make it possible to show databases with locked tables"
@@ -8696,11 +8700,11 @@ msgstr ""
"Ishlatilayotgan jadvallarni belgilash va qulflangan jadvallari mavjud "
"bo‘lgan ma`lumotlar bazalarini ko‘rishga imkon berish"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "Qulflangan jadvallarni tashlab ketishlik"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
@@ -8712,11 +8716,11 @@ msgstr ""
"[kbd]cookie[/kbd]-autentifikatsiya usulida cookie-larni shifrlash uchun "
"ishlatiladigan sirli ibora"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
@@ -8729,59 +8733,59 @@ msgstr ""
"[kbd]cookie[/kbd]-autentifikatsiya usulida cookie-larni shifrlash uchun "
"ishlatiladigan sirli ibora"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "cookie-login yaroqligi"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Textarea columns"
msgstr "CHAR maydonidagi ustunlar soni"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
#, fuzzy
#| msgid "CHAR textarea rows"
msgid "Textarea rows"
msgstr "CHAR maydonidagi qatorlar soni"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
#, fuzzy
#| msgid "Default table tab"
msgid "Default title"
msgstr "Jadval yorlig‘i"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
#, fuzzy
#| msgid ""
#| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following "
@@ -8799,22 +8803,22 @@ msgstr ""
"kelayotgan HTTP_X_FORWARDED_FOR (X-Forwarded-For) sarlavhani ishonchli deb "
"qabul qilishini ta`minlaydi: [br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
"IP bo‘yicha ruxsat berish/rad etish uchun ishonarli proksi-serverlar ro‘yxati"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
#, fuzzy
#| msgid "Directory on server where you can upload files for import"
msgid "Directory on server where you can upload files for import."
msgstr "Serverda import fayllari saqlanadigan direktoriya"
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "Import direktoriyasi"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
#, fuzzy
#| msgid "Allow for searching inside the entire database"
msgid "Allow for searching inside the entire database."
@@ -8822,36 +8826,36 @@ msgstr ""
"Ma`lumotlar bazasi ichidagi ma`lumotlarni to‘laligicha qidirishga ruxsat "
"berish"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "Bazani qidirishdan foydalanish"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Oxirgi versiyani tekshirish"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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 "Versiyani tekshirish"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -8859,34 +8863,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "Foydalanuvchi"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Parol"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8898,54 +8902,54 @@ msgstr ""
"Import va eksport operatsiyalari uchun [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] qisishni yoqish"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "Server porti"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL so‘rovlari"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8981,48 +8985,48 @@ msgstr "Autentifikatsiya tartibi"
msgid "Signon authentication"
msgstr "Autentifikatsiya tartibi"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "\"LOAD DATA\" ishlatilgan CSV"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Open Document jadvali"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Rangni tanlash"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "Ma`lumotlar bazasi eksport parametrlari"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "MS Excel uchun CSV"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -15336,13 +15340,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr "PHP-kod sifatida ko‘rsatish"
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`\"%s\"` jadvalidagi indekslarda muammo mavjud"
@@ -16799,6 +16811,12 @@ msgstr "Izoh"
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start"
+msgid "Start row:"
+msgstr "Boshlash"
+
#: templates/table/options.phtml:8
#, fuzzy
#| msgid "Select fields (at least one):"
diff --git a/po/vi.po b/po/vi.po
index 11d8970662..6e0cce7248 100644
--- a/po/vi.po
+++ b/po/vi.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-04-15 09:55+0200\n"
"Last-Translator: Bao trinh minh \n"
"Language-Team: Vietnamese %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr ""
@@ -3244,25 +3245,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3300,9 +3301,9 @@ msgid_plural "%1$s matches in %2$s"
msgstr[0] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3356,28 +3357,28 @@ msgstr ""
msgid "Search this table"
msgstr ""
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr ""
@@ -3386,8 +3387,9 @@ msgstr ""
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3483,16 +3485,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr ""
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3500,7 +3502,7 @@ msgstr ""
msgid "Check All"
msgstr ""
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr ""
@@ -3593,11 +3595,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3661,8 +3663,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3678,7 +3680,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -3690,16 +3692,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3711,10 +3713,10 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3722,19 +3724,19 @@ msgid "SQL"
msgstr ""
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr ""
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3743,7 +3745,7 @@ msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3752,21 +3754,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr ""
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3783,16 +3785,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3800,16 +3802,16 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr ""
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3817,38 +3819,38 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr ""
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr ""
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -3870,7 +3872,7 @@ msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
msgstr[0] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4471,12 +4473,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4487,118 +4489,114 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr ""
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr ""
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr ""
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr ""
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr ""
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr ""
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr ""
@@ -4621,13 +4619,13 @@ msgstr ""
msgid "Rows"
msgstr "Bản ghi"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5036,7 +5034,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -5704,10 +5702,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6151,7 +6149,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6346,833 +6344,841 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "%s table"
#| msgid_plural "%s tables"
msgid "Favorites table"
msgstr "%s bảng"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments:"
msgid "Show table comments"
msgstr "Các chú thích của Bảng"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
+msgid ""
+"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772
-msgid "Show statistics"
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+msgid "Retain query box"
msgstr ""
#: libraries/config/messages.inc.php:773
+msgid "Allow to display database and table statistics (eg. space usage)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:774
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7180,52 +7186,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7233,80 +7239,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7330,44 +7336,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr ""
@@ -12630,13 +12636,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -13846,6 +13860,10 @@ msgstr ""
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr ""
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/vls.po b/po/vls.po
index 580406ff08..8c83c2de5c 100644
--- a/po/vls.po
+++ b/po/vls.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2014-12-23 23:39+0200\n"
"Last-Translator: Robin van der Vliet \n"
"Language-Team: West Flemish %s:"
msgstr ""
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr ""
@@ -3229,25 +3230,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3287,9 +3288,9 @@ msgstr[0] ""
msgstr[1] ""
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3343,28 +3344,28 @@ msgstr ""
msgid "Search this table"
msgstr ""
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr ""
@@ -3373,8 +3374,9 @@ msgstr ""
msgid "All"
msgstr ""
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3470,16 +3472,16 @@ msgid "Query took %01.4f seconds."
msgstr ""
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr ""
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3487,7 +3489,7 @@ msgstr ""
msgid "Check All"
msgstr ""
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr ""
@@ -3580,11 +3582,11 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr ""
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr ""
@@ -3648,8 +3650,8 @@ msgstr ""
msgid "Index %s has been dropped."
msgstr ""
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3665,7 +3667,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr ""
@@ -3677,16 +3679,16 @@ msgid "View"
msgstr ""
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3698,10 +3700,10 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3709,19 +3711,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr ""
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3730,7 +3732,7 @@ msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3739,21 +3741,21 @@ msgid "Privileges"
msgstr ""
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr ""
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr ""
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3770,16 +3772,16 @@ msgstr ""
msgid "Database seems to be empty!"
msgstr ""
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr ""
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr ""
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3787,16 +3789,16 @@ msgstr ""
msgid "Events"
msgstr ""
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr ""
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr ""
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3804,38 +3806,38 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "Gebrukers"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr ""
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr ""
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr ""
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr ""
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr ""
@@ -3860,7 +3862,7 @@ msgid_plural "%1$d rows inserted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4463,12 +4465,12 @@ msgstr ""
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr ""
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4479,118 +4481,114 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr ""
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr ""
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "zu"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s daagn, %s eurn, %s menuutn and %s secondn"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr ""
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr ""
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr ""
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr ""
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr ""
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr ""
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr ""
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr ""
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr ""
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr ""
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr ""
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr ""
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr ""
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr ""
@@ -4613,13 +4611,13 @@ msgstr ""
msgid "Rows"
msgstr ""
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 ""
@@ -5024,7 +5022,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr ""
@@ -5692,10 +5690,10 @@ msgstr ""
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr ""
@@ -6139,7 +6137,7 @@ msgid "Maximum displayed SQL length"
msgstr ""
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr ""
@@ -6334,828 +6332,836 @@ msgstr ""
msgid "Where to show the table row links"
msgstr ""
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
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:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
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:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
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:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
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:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
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:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
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:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
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:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
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:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
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:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
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:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
-msgid "Show Creation timestamp"
-msgstr ""
-
-#: libraries/config/messages.inc.php:754
-msgid ""
-"Show or hide a column displaying the Last update timestamp for all tables."
-msgstr ""
-
#: libraries/config/messages.inc.php:755
-msgid "Show Last update timestamp"
+msgid "Show Creation timestamp"
msgstr ""
#: libraries/config/messages.inc.php:756
msgid ""
-"Show or hide a column displaying the Last check timestamp for all tables."
+"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
#: libraries/config/messages.inc.php:757
-msgid "Show Last check timestamp"
+msgid "Show Last update timestamp"
msgstr ""
#: libraries/config/messages.inc.php:758
msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables."
+msgstr ""
+
+#: libraries/config/messages.inc.php:759
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:760
+msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:766
-msgid "Show detailed MySQL server information"
-msgstr ""
-
-#: libraries/config/messages.inc.php:767
-msgid ""
-"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-msgstr ""
-
#: libraries/config/messages.inc.php:768
-msgid "Show SQL queries"
+msgid "Show detailed MySQL server information"
msgstr ""
#: libraries/config/messages.inc.php:769
msgid ""
-"Defines whether the query box should stay on-screen after its submission."
+"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
-msgid "Retain query box"
+#: libraries/config/messages.inc.php:770
+msgid "Show SQL queries"
msgstr ""
#: libraries/config/messages.inc.php:771
-msgid "Allow to display database and table statistics (eg. space usage)."
+msgid ""
+"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772
-msgid "Show statistics"
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+msgid "Retain query box"
msgstr ""
#: libraries/config/messages.inc.php:773
+msgid "Allow to display database and table statistics (eg. space usage)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:774
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) 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:790
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7163,52 +7169,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7216,80 +7222,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
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:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
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:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7313,44 +7319,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr ""
@@ -12614,13 +12620,21 @@ msgstr ""
msgid "Showing as PHP code"
msgstr ""
-#: libraries/sql.lib.php:1765
+#: 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, 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 ""
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -13827,6 +13841,10 @@ msgstr ""
msgid "Drag to reorder"
msgstr ""
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr ""
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr ""
diff --git a/po/zh_CN.po b/po/zh_CN.po
index c5083e46be..43768736ae 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-04-21 08:43+0200\n"
"Last-Translator: fundawang \n"
"Language-Team: Chinese (China) %s:"
msgstr "在数据库 %s 执行 SQL 语句:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "提交查询"
@@ -3469,25 +3470,25 @@ msgstr "更新书签"
msgid "Delete bookmark"
msgstr "删除书签"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr "服务器没有响应(或本地服务器的套接字没有正确设置)。"
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "服务器没有响应。"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "请检查数据库文件夹的权限。"
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "详细…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr "使用配置文件中定义的控制用户连接失败。"
@@ -3525,9 +3526,9 @@ msgid_plural "%1$s matches in %2$s"
msgstr[0] "在 %2$s 中找到 %1$s 个"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3581,28 +3582,28 @@ msgstr "过滤行"
msgid "Search this table"
msgstr "在表中搜索"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "首页"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "上一页"
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "下一页"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "尾页"
@@ -3611,8 +3612,9 @@ msgstr "尾页"
msgid "All"
msgstr "全部"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "行数:"
@@ -3708,16 +3710,16 @@ msgid "Query took %01.4f seconds."
msgstr "查询花费 %01.4f 秒。"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "选中项:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3725,7 +3727,7 @@ msgstr "选中项:"
msgid "Check All"
msgstr "全选"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "打印预览"
@@ -3820,11 +3822,11 @@ msgstr "缺少 Git 信息!"
msgid "Open new phpMyAdmin window"
msgstr "打开新的 phpMyAdmin 窗口"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "点击以滚动到页面顶部"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "该处必须启用 Javascript!"
@@ -3888,8 +3890,8 @@ msgstr "已删除主键。"
msgid "Index %s has been dropped."
msgstr "已删除索引 %s。"
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3905,7 +3907,7 @@ msgid ""
msgstr "索引 %1$s 和 %2$s 似乎是相同的,可以删除其中一个。"
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "服务器"
@@ -3917,16 +3919,16 @@ msgid "View"
msgstr "视图"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3938,10 +3940,10 @@ msgid "Structure"
msgstr "结构"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3949,19 +3951,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "搜索"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3970,7 +3972,7 @@ msgid "Insert"
msgstr "插入"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3979,21 +3981,21 @@ msgid "Privileges"
msgstr "权限"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "操作"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "追踪"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -4010,16 +4012,16 @@ msgstr "触发器"
msgid "Database seems to be empty!"
msgstr "数据库是空的!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "查询"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "程序"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -4027,18 +4029,18 @@ msgstr "程序"
msgid "Events"
msgstr "事件"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "设计器"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns"
msgstr "文本框列"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -4046,38 +4048,38 @@ msgstr "文本框列"
msgid "Databases"
msgstr "数据库"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "用户"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "二进制日志"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "复制"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "变量"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "字符集"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "插件"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "引擎"
@@ -4099,7 +4101,7 @@ msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
msgstr[0] "插入了 %1$d 行。"
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4741,12 +4743,12 @@ msgstr "变长(0-65535)字符串,使用二进制排序规则进行所有
msgid "An enumeration, chosen from the list of defined values"
msgstr "枚举,从定义好的值中选择"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "最大限制:%s %s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4757,28 +4759,28 @@ msgstr "最大限制:%s %s"
msgid "MySQL said: "
msgstr "MySQL 返回: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "解析 SQL"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "略过解析 SQL"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr ""
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "无 PHP 代码"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "创建 PHP 代码"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
@@ -4786,93 +4788,87 @@ msgid "Edit inline"
msgstr "编辑索引"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "周日"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y-%m-%d %H:%M:%S"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s 天 %s 小时,%s 分 %s 秒"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "缺少参数:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "转到数据库 \"%s\"。"
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "功能 %s 受到一个已知缺陷的影响,参见 %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "点击切换"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "从计算机中上传:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "从网站服务器上传文件夹 %s 中选择:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "无法访问用于上传的文件夹。"
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "没有可上传的文件!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "清空"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "执行"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "打印"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "创建时间"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "最后更新"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "最后检查"
-#: libraries/Util.class.php:4862
-#, fuzzy
-#| msgid "Start row"
-msgid "Start row:"
-msgstr "起始行"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "搜索:"
@@ -4895,13 +4891,13 @@ msgstr "使用该值"
msgid "Rows"
msgstr "行数"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "数据"
@@ -5328,7 +5324,7 @@ msgid "Set value: %s"
msgstr "设置值:%s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "还原为默认值"
@@ -6046,10 +6042,10 @@ msgstr "自定义浏览模式"
msgid "Customize default options."
msgstr "自定义默认选项。"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6591,7 +6587,7 @@ msgid "Maximum displayed SQL length"
msgstr "SQL 最大显示长度"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "用户设置不能超过该值"
@@ -6838,38 +6834,46 @@ msgstr "它们是编辑、复制和删除链接"
msgid "Where to show the table row links"
msgstr "表行链接显示位置"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
#, 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:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "自然排序"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
+#: libraries/config/messages.inc.php:531
#, fuzzy
#| msgid "Use only icons, only text or both"
msgid "Use only icons, only text or both."
msgstr "仅使用图标、文字或都有"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "表导航条"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
#, 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:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip 输出缓冲"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid ""
#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
@@ -6881,21 +6885,21 @@ msgstr ""
"[kbd]SMART[/kbd] - 即对 TIME、DATE、DATETIME 和 TIMESTAMP 类型的字段递减排"
"序,其它字段递增"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "默认排序"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Use persistent connections to MySQL databases."
msgstr "在连接到 MySQL 数据库时使用持久连接"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "持久连接"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -6907,11 +6911,11 @@ msgid ""
"configuration storage could not be found."
msgstr "禁止在缺少 phpMyAdmin 高级功能所需数据表时在数据库结构页中显示默认警告"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "丢失 phpMyAdmin 高级功能数据表"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if a difference between the "
@@ -6921,11 +6925,11 @@ msgid ""
"MySQL library and server is detected."
msgstr "禁止显示检测到MySQL库版本与服务器版本不同时的默认警告"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "服务器/程序库版本不同警告"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -6935,29 +6939,29 @@ msgid ""
"column names in a table are reserved MySQL words."
msgstr "禁止在列名包含 MySQL 保留字时在数据库结构页中显示默认警告"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "MySQL 保留字警告"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "显示菜单标签的方式"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "显示动作链接的方式"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
#, 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:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "保护二进制字段"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6966,51 +6970,51 @@ msgstr ""
"允许使用基于数据库的查询历史 (需要 phpMyAdmin 高级功能)。如果禁用,将使用 "
"JS 程序来显示查询历史 (关闭窗口即丢失)。"
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "持久查询历史"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "记录查询历史的数量"
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "查询历史个数"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
#, 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:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "记录引擎"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, 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:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "记录表排序"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "默认排序"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
#, fuzzy
#| msgid ""
#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@@ -7018,91 +7022,91 @@ msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr "每 X 单元格重复表头,要禁止此功能请设为 [kbd]0[/kbd]"
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "重复表头"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "单元格编辑:触发操作"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "关联显示字段"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "服务器显示选项"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "立刻存储所有已编辑的单元格"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
#, 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:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "保存文件夹"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "不使用请留空"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "主机认证模式"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "默认请留空"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "主机认证规则"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "允许空密码登录"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "允许 root 用户登录"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "会话值"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
#, 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 基本认证时显示给用户的提示信息"
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP 提示信息"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid ""
#| "The path for the config file for [a@http://swekey.com]SweKey hardware "
@@ -7116,21 +7120,21 @@ msgstr ""
"[a@http://swekey.com]SweKey 硬件认证 (外链,英文)[/a]的配置文件路径 (请勿置于"
"你的文档根文件夹,推荐使用:/etc/swekey.conf)"
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey 配置文件"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "要使用的认证方式"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "认证方式"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7138,11 +7142,11 @@ msgstr ""
"不使用[a@http://wiki.phpmyadmin.net/pma/bookmark]书签 (外链,英文)[/a]功能请"
"留空,推荐: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "书签表"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
@@ -7152,35 +7156,35 @@ msgid ""
"[kbd]pma__column_info[/kbd]."
msgstr "留空则不使用列信息和MIME类型。推荐: [kbd]pma__column_info[/kbd]"
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "列信息表"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "压缩连接到 MySQL 服务器"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "压缩连接"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
#, 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:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "连接方式"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "控制用户的密码"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7193,11 +7197,11 @@ msgstr ""
"一个特殊的被限制权限的 MySQL 用户,参见 [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki (外链,英文)[/a]"
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "控制用户"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7207,11 +7211,11 @@ msgid ""
"already defined host."
msgstr "一个会变的主机被设置在了设置文件中,你可以留空以使用已经定义了的主机"
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "控制主机"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7222,17 +7226,17 @@ msgid ""
"if the controlhost equals host."
msgstr "一个会变的主机被设置在了设置文件中,你可以留空以使用已经定义了的主机"
-#: libraries/config/messages.inc.php:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "控制端口"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
#, fuzzy
#| msgid "Hide databases matching regular expression (PCRE)"
msgid "Hide databases matching regular expression (PCRE)."
msgstr "该正则表达式 (PCRE,Perl 兼容) 所匹配的数据库将被隐藏"
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -7241,15 +7245,15 @@ msgstr ""
"统 (外链,英文)[/a] 和 [a@http://bugs.mysql.com/19588]MySQL 缺陷 (Bugs) (外"
"链,英文)[/a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "禁止使用 INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "隐藏数据库"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7259,25 +7263,25 @@ msgid ""
"kbd]."
msgstr "不使用 SQL 查询历史功能请留空,推荐: [kbd]pma__history[/kbd]"
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL 查询历史表"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
msgstr "MySQL 服务器的主机名"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "服务器主机名"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "退出地址"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
#, fuzzy
#| msgid ""
#| "Limits number of table preferences which are stored in database, the "
@@ -7287,17 +7291,17 @@ msgid ""
"records are automatically removed."
msgstr "限制保存在数据库中的表设置数量,旧设置将被自动删除"
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "最多保存的表设置数量"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "查看从服务器状态"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7307,13 +7311,13 @@ msgid ""
"[kbd]pma__savedsearches[/kbd]."
msgstr "不使用 PDF 大纲功能请留空,推荐: [kbd]pma__pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "文本框列"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7323,17 +7327,17 @@ msgid ""
"[kbd]pma__central_columns[/kbd]."
msgstr "不使用 PDF 大纲功能请留空,推荐: [kbd]pma__table_coords[/kbd]"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "尝试用空密码连接"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "用空密码连接"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -7342,21 +7346,21 @@ msgstr ""
"可以使用 MySQL 通配符 (% 和 _),若表示它们本身,请转义,例:用 [kbd]'my"
"\\_db'[/kbd] 而不是 [kbd]'my_db'[/kbd]。"
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "仅显示列出的数据库"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr "如果不使用 config 认证方式,请留空"
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "config 认证方式的密码"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7365,11 +7369,11 @@ 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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF 大纲: 数据表页"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
@@ -7383,22 +7387,22 @@ msgstr ""
"关系、书签、PDF 功能所用的数据库。参见 [a@http://wiki.phpmyadmin.net/pma/"
"pmadb]pmadb (外链,英文)[/a]。不使用请留空。推荐: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "数据库名"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
#, 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:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "服务器端口"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7408,11 +7412,11 @@ msgid ""
"suggested: [kbd]pma__recent[/kbd]."
msgstr "不需要 \"持久\" 最近使用的表请留空,推荐: [kbd]pma__recent[/kbd]"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "最近使用的表"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7422,13 +7426,13 @@ msgid ""
"suggested: [kbd]pma__favorite[/kbd]."
msgstr "不需要 \"持久\" 最近使用的表请留空,推荐: [kbd]pma__recent[/kbd]"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "表收藏夹"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -7440,11 +7444,11 @@ msgstr ""
"不使用[a@http://wiki.phpmyadmin.net/pma/relation]关系链接 (外链,英文)[/a]功"
"能请留空,推荐: [kbd]pma__relation[/kbd]"
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "关系表"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -7456,35 +7460,35 @@ msgstr ""
"参见[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]认证方式 (外链,英文)"
"[/a]中的例子"
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Signon 会话名"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "登录地址"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
#, 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:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "服务器套接字 (socket)"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
#, 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:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "使用 SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7494,13 +7498,13 @@ msgid ""
"kbd]."
msgstr "不使用 PDF 大纲功能请留空,推荐: [kbd]pma__table_coords[/kbd]"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "PDF 大纲: 数据表并发"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
#, fuzzy
#| msgid ""
#| "Table to describe the display columns, leave blank for no support; "
@@ -7510,11 +7514,11 @@ msgid ""
"suggested: [kbd]pma__table_info[/kbd]."
msgstr "描述显示字段的表,不使用请留空,推荐: [kbd]pma__table_info[/kbd]"
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "显示字段表"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" tables'UI preferences across sessions, "
@@ -7524,49 +7528,49 @@ msgid ""
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr "不需要 \"持久\" 表界面设置请留空,推荐: [kbd]pma__table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "界面设置表"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr "设置当记录数据库创建时,是否在前面加上 DROP DATABASE IF EXISTS 命令。"
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "添加 DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "添加 DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
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:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "添加 DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr "定义自动创建新版的命令列表。"
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "要追踪的命令"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
@@ -7576,21 +7580,21 @@ msgid ""
"[kbd]pma__tracking[/kbd]."
msgstr "不使用 SQL 查询追踪功能请留空,推荐: [kbd]pma__tracking[/kbd]"
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL 查询追踪表"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr "设置追踪系统是否自动为数据表和视图创建版本。"
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "自动创建版本"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7600,33 +7604,33 @@ msgid ""
"[kbd]pma__userconfig[/kbd]."
msgstr "不在数据库中保存用户偏好请留空,推荐: [kbd]pma__userconfig[/kbd]"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "用户偏好表"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "用户表"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "用户组表"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7636,35 +7640,35 @@ msgid ""
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr "不在数据库中保存用户偏好请留空,推荐: [kbd]pma__userconfig[/kbd]"
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "config 认证方式的用户名"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr "一个好记的名字。留空将显示主机名。"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "服务器名称"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
#, 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:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "允许显示所有行"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
#, fuzzy
#| msgid ""
#| "Please note that enabling this has no effect with [kbd]config[/kbd] "
@@ -7679,39 +7683,39 @@ msgstr ""
"注意:该选项不影响 [kbd]config[/kbd] 认证方式,因为密码是保存在配置文件中,该"
"选项也不限制直接执行可实现相同功能的命令"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "显示修改密码"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "显示创建数据库表单"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
#, 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:751
+#: libraries/config/messages.inc.php:753
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "表注释"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
#, 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:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "显示创建时间戳"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last update timestamp for all tables"
@@ -7719,11 +7723,11 @@ msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr "显示或者隐藏在所有表格中列显示最后更新时间戳"
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "显示最后更新时间戳"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last check timestamp for all tables"
@@ -7731,11 +7735,11 @@ msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr "显示或者隐藏所有表格中,列显示最后检查时间戳"
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "查看最后检查时间戳"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
#, fuzzy
#| msgid ""
#| "Defines whether or not type fields should be initially displayed in edit/"
@@ -7745,31 +7749,31 @@ msgid ""
"insert mode."
msgstr "定义在编辑/插入模式中是否显示字段类型一列"
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "显示字段类型"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
#, 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:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "显示函数列"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
#, fuzzy
#| msgid "Whether to show hint or not"
msgid "Whether to show hint or not."
msgstr "是否显示提示"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "显示提示"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -7780,15 +7784,15 @@ msgid ""
msgstr ""
"显示 [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] 输出的链接"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "显示 phpinfo() 链接"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "显示 MySQL 服务器详细信息"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -7796,11 +7800,11 @@ msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "定义是否显示 phpMyAdmin 生成的 SQL 查询"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "显示 SQL 查询"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
#, fuzzy
#| msgid ""
#| "Defines whether the query box should stay on-screen after its submission"
@@ -7808,21 +7812,21 @@ msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "声明查询框是否在提交后依然显示在屏幕上"
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "保留查询框"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
#, 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:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "显示统计"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
#, fuzzy
#| msgid ""
#| "Mark used tables and make it possible to show databases with locked tables"
@@ -7830,11 +7834,11 @@ msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr "将已锁定的数据表在数据库中显示为使用中"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "跳过锁定的表"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7842,11 +7846,11 @@ msgid ""
"detected."
msgstr "若检测到 Suhosin 将在首页中显示警告。"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin 警告"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7857,13 +7861,13 @@ msgid ""
"`LoginCookieValidity`."
msgstr "禁止在列名包含 MySQL 保留字时在数据库结构页中显示默认警告"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "登录 cookie 有效期"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7875,11 +7879,11 @@ msgstr ""
"编辑模式的文本框大小 (列数),此值将用于 SQL 查询文本框 (*2) 和查询窗口 "
"(*1.25)"
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "文本框列"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7891,39 +7895,39 @@ msgstr ""
"编辑模式的文本框大小 (行数),此值将用于 SQL 查询文本框 (*2) 和查询窗口 "
"(*1.25)"
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "文本框行"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
#, 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:791
+#: libraries/config/messages.inc.php:793
#, 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:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "默认标题"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
#, 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:795
+#: libraries/config/messages.inc.php:797
#, 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:797
+#: libraries/config/messages.inc.php:799
#, fuzzy
#| msgid ""
#| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following "
@@ -7940,52 +7944,52 @@ msgstr ""
"信任从代理 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd] 发来的 "
"HTTP_X_FORWARDED_FOR 头"
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "可信代理IP列表"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr "服务器上用来存放导入文件的文件夹。"
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "上传文件夹"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "允许搜索整个数据库。"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "使用数据库搜索"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr "禁用时,用户不能设置下列选项,右侧的复选框被忽略。"
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "启用设置中的开发标签"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "检查更新"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "允许在 phpMyAdmin 主页面中检查最新版本。"
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7993,11 +7997,11 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "代理URL"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -8006,19 +8010,19 @@ msgstr ""
"连接代理服务器时使用的用户名。如果提供用户名,将使用基本认证方式连接。目前还"
"不支持其他认证方式。"
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "代理用户名"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "代理密码"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8030,53 +8034,53 @@ msgstr ""
"允许在导入和导出时使用 [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP "
"(外链,英文)[/a] 压缩"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "reCaptcha的公共密匙"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "reCaptcha私有密匙"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "发送错误报告"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
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:826
+#: libraries/config/messages.inc.php:828
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "已执行的查询"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8104,46 +8108,46 @@ msgstr "HTTP 认证"
msgid "Signon authentication"
msgstr "Signon 认证"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV 使用 LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "OpenOffice 表格"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "快速"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "自定义"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "数据库导出选项"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "MS Excel 的 CSV 格式"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "微软 Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "OpenOffice 文档"
@@ -13922,17 +13926,27 @@ msgstr "使用书签 \"%s\" 作为默认的查询。"
msgid "Showing as PHP code"
msgstr "显示为 PHP 代码"
-#: libraries/sql.lib.php:1765
-#, fuzzy
+#: libraries/sql.lib.php:1767
+#, fuzzy, php-format
#| msgid ""
#| "This table 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."
+"Edit, Copy and Delete features are not available. %s"
msgstr "该表没有唯一字段。单元格编辑、复选框、编辑、复制和删除无法正常使用。"
-#: libraries/sql.lib.php:1802
+#: libraries/sql.lib.php:1778
+#, fuzzy, php-format
+#| msgid ""
+#| "This table 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"
+msgstr "该表没有唯一字段。单元格编辑、复选框、编辑、复制和删除无法正常使用。"
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "数据表 `%s` 的索引存在问题"
@@ -15260,6 +15274,12 @@ msgstr "注释:"
msgid "Drag to reorder"
msgstr "拖拽以调整顺序。"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+#, fuzzy
+#| msgid "Start row"
+msgid "Start row:"
+msgstr "起始行"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "选择字段(至少一个):"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 263dd8f488..de6b3cab17 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.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-20 06:59-0400\n"
+"POT-Creation-Date: 2015-06-22 08:04-0400\n"
"PO-Revision-Date: 2015-05-28 09:43+0200\n"
"Last-Translator: Chien Wei Lin \n"
"Language-Team: Chinese (Taiwan) %s:"
msgstr "在資料庫 %s 執行 SQL 指令:"
-#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1246
+#: libraries/DBQbe.class.php:1852 libraries/Util.class.php:1249
msgid "Submit Query"
msgstr "送出查詢"
@@ -3316,25 +3317,25 @@ msgstr "更新書籤"
msgid "Delete bookmark"
msgstr "刪除書籤"
-#: libraries/DatabaseInterface.class.php:2438
+#: libraries/DatabaseInterface.class.php:2446
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr "伺服器沒有回應(或者是伺服器的 socket 沒有被正確的設定)。"
-#: libraries/DatabaseInterface.class.php:2443
+#: libraries/DatabaseInterface.class.php:2451
msgid "The server is not responding."
msgstr "伺服器沒有回應。"
-#: libraries/DatabaseInterface.class.php:2448
+#: libraries/DatabaseInterface.class.php:2456
msgid "Please check privileges of directory containing database."
msgstr "請檢查資料庫所在的資料夾權限。"
-#: libraries/DatabaseInterface.class.php:2458
+#: libraries/DatabaseInterface.class.php:2466
msgid "Details…"
msgstr "詳細資訊…"
-#: libraries/DatabaseInterface.class.php:2681
+#: libraries/DatabaseInterface.class.php:2689
msgid "Connection for controluser as defined in your configuration failed."
msgstr "使用設定檔案中定義的控制使用者連線失敗。"
@@ -3372,9 +3373,9 @@ msgid_plural "%1$s matches in %2$s"
msgstr[0] "%1$s 筆資料符合 %2$s"
#: libraries/DbSearch.class.php:354 libraries/Menu.class.php:309
-#: libraries/Util.class.php:3352 libraries/Util.class.php:3362
-#: libraries/Util.class.php:3662 libraries/Util.class.php:3663
-#: libraries/Util.class.php:4415 libraries/config.values.php:43
+#: libraries/Util.class.php:3357 libraries/Util.class.php:3367
+#: libraries/Util.class.php:3667 libraries/Util.class.php:3668
+#: libraries/Util.class.php:4420 libraries/config.values.php:43
#: libraries/config.values.php:51 libraries/config.values.php:119
#: libraries/navigation/Nodes/Node_Table.class.php:297
#: libraries/structure.lib.php:1527
@@ -3428,29 +3429,29 @@ msgstr "搜尋資料列"
msgid "Search this table"
msgstr "搜尋此資料表"
-#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2549
-#: libraries/Util.class.php:2552
+#: libraries/DisplayResults.class.php:964 libraries/Util.class.php:2552
+#: libraries/Util.class.php:2555
msgctxt "First page"
msgid "Begin"
msgstr "最前頁"
-#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2550
-#: libraries/Util.class.php:2553 libraries/server_bin_log.lib.php:170
+#: libraries/DisplayResults.class.php:967 libraries/Util.class.php:2553
+#: libraries/Util.class.php:2556 libraries/server_bin_log.lib.php:170
#: libraries/server_bin_log.lib.php:172
msgctxt "Previous page"
msgid "Previous"
msgstr "上一頁"
# 這應該使用於選擇日期的小月曆
-#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2581
-#: libraries/Util.class.php:2591 libraries/server_bin_log.lib.php:204
+#: libraries/DisplayResults.class.php:1033 libraries/Util.class.php:2584
+#: libraries/Util.class.php:2594 libraries/server_bin_log.lib.php:204
#: libraries/server_bin_log.lib.php:206
msgctxt "Next page"
msgid "Next"
msgstr "下一頁"
-#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2582
-#: libraries/Util.class.php:2592
+#: libraries/DisplayResults.class.php:1063 libraries/Util.class.php:2585
+#: libraries/Util.class.php:2595
msgctxt "Last page"
msgid "End"
msgstr "最末頁"
@@ -3459,8 +3460,9 @@ msgstr "最末頁"
msgid "All"
msgstr "全部"
-#: libraries/DisplayResults.class.php:1116 libraries/Util.class.php:4879
+#: libraries/DisplayResults.class.php:1116
#: libraries/display_export.lib.php:338
+#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "資料列數:"
@@ -3556,16 +3558,16 @@ msgid "Query took %01.4f seconds."
msgstr "查詢花費 %01.4f 秒。"
#: libraries/DisplayResults.class.php:4828
-#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4839
-#: libraries/Util.class.php:4845 libraries/mult_submits.inc.php:45
+#: libraries/DisplayResults.class.php:4835 libraries/Util.class.php:4844
+#: libraries/Util.class.php:4850 libraries/mult_submits.inc.php:45
#: libraries/structure.lib.php:300 libraries/structure.lib.php:316
#: libraries/structure.lib.php:318
msgid "With selected:"
msgstr "已選擇項目:"
#: libraries/DisplayResults.class.php:4832
-#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4841
-#: libraries/Util.class.php:4842 libraries/server_privileges.lib.php:1172
+#: libraries/DisplayResults.class.php:4834 libraries/Util.class.php:4846
+#: libraries/Util.class.php:4847 libraries/server_privileges.lib.php:1172
#: libraries/server_privileges.lib.php:1173
#: libraries/server_privileges.lib.php:1385
#: libraries/server_user_groups.lib.php:231 libraries/structure.lib.php:303
@@ -3573,7 +3575,7 @@ msgstr "已選擇項目:"
msgid "Check All"
msgstr "全選"
-#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:383
+#: libraries/DisplayResults.class.php:5005 libraries/Header.class.php:382
#: libraries/structure.lib.php:407 libraries/structure.lib.php:1678
msgid "Print view"
msgstr "預覽列印"
@@ -3666,11 +3668,11 @@ msgstr "缺少 Git 資訊!"
msgid "Open new phpMyAdmin window"
msgstr "開啟新 phpMyAdmin 視窗"
-#: libraries/Header.class.php:463
+#: libraries/Header.class.php:462
msgid "Click on the bar to scroll to top of page"
msgstr "點選此列以回到頁面頂端"
-#: libraries/Header.class.php:741
+#: libraries/Header.class.php:740
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
msgid "Javascript must be enabled past this point!"
msgstr "必須啟用 Javascript 才能登入!"
@@ -3734,8 +3736,8 @@ msgstr "已刪除主鍵(Primary key)。"
msgid "Index %s has been dropped."
msgstr "已刪除索引 %s。"
-#: libraries/Index.class.php:757 libraries/Util.class.php:3669
-#: libraries/Util.class.php:3670 libraries/operations.lib.php:1502
+#: libraries/Index.class.php:757 libraries/Util.class.php:3674
+#: libraries/Util.class.php:3675 libraries/operations.lib.php:1502
#: libraries/rte/rte_list.lib.php:150 libraries/server_databases.lib.php:146
#: libraries/structure.lib.php:331 libraries/structure.lib.php:1537
#: libraries/structure.lib.php:2281 libraries/structure.lib.php:2283
@@ -3751,7 +3753,7 @@ msgid ""
msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除。"
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:796
msgid "Server"
msgstr "伺服器"
@@ -3763,16 +3765,16 @@ msgid "View"
msgstr "檢視表"
#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3348 libraries/Util.class.php:3358
-#: libraries/Util.class.php:3364 libraries/Util.class.php:3668
-#: libraries/Util.class.php:4399 libraries/Util.class.php:4416
+#: 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:311
-#: libraries/config/setup.forms.php:351 libraries/config/setup.forms.php:377
-#: libraries/config/user_preferences.forms.php:211
-#: libraries/config/user_preferences.forms.php:251
-#: libraries/config/user_preferences.forms.php:277
+#: 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
@@ -3784,10 +3786,10 @@ msgid "Structure"
msgstr "結構"
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
-#: libraries/Menu.class.php:547 libraries/Util.class.php:3349
-#: libraries/Util.class.php:3359 libraries/Util.class.php:3365
-#: libraries/Util.class.php:4385 libraries/Util.class.php:4400
-#: libraries/Util.class.php:4417 libraries/config.values.php:40
+#: 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/navigation/Nodes/Node_Table.class.php:294
@@ -3795,19 +3797,19 @@ msgid "SQL"
msgstr "SQL"
#: libraries/Menu.class.php:326 libraries/Menu.class.php:430
-#: libraries/Util.class.php:3350 libraries/Util.class.php:3360
-#: libraries/Util.class.php:3366 libraries/Util.class.php:3664
-#: libraries/Util.class.php:3665 libraries/Util.class.php:4401
-#: libraries/Util.class.php:4418 libraries/config.values.php:41
+#: libraries/Util.class.php:3355 libraries/Util.class.php:3365
+#: libraries/Util.class.php:3371 libraries/Util.class.php:3669
+#: libraries/Util.class.php:3670 libraries/Util.class.php:4406
+#: libraries/Util.class.php:4423 libraries/config.values.php:41
#: libraries/config.values.php:49 libraries/config.values.php:111
#: libraries/config.values.php:117
#: libraries/navigation/Nodes/Node_Table.class.php:288
msgid "Search"
msgstr "搜尋"
-#: libraries/Menu.class.php:336 libraries/Util.class.php:3351
-#: libraries/Util.class.php:3361 libraries/Util.class.php:3666
-#: libraries/Util.class.php:3667 libraries/Util.class.php:4419
+#: libraries/Menu.class.php:336 libraries/Util.class.php:3356
+#: libraries/Util.class.php:3366 libraries/Util.class.php:3671
+#: libraries/Util.class.php:3672 libraries/Util.class.php:4424
#: libraries/config.values.php:42 libraries/config.values.php:50
#: libraries/config.values.php:118
#: libraries/navigation/Nodes/Node_Table.class.php:291
@@ -3816,7 +3818,7 @@ msgid "Insert"
msgstr "新增"
#: libraries/Menu.class.php:360 libraries/Menu.class.php:465
-#: libraries/Util.class.php:4406 libraries/Util.class.php:4422
+#: libraries/Util.class.php:4411 libraries/Util.class.php:4427
#: libraries/config.values.php:106 libraries/server_common.lib.php:51
#: libraries/server_privileges.lib.php:2244
#: libraries/server_privileges.lib.php:3031
@@ -3825,21 +3827,21 @@ msgid "Privileges"
msgstr "權限"
#: libraries/Menu.class.php:369 libraries/Menu.class.php:377
-#: libraries/Menu.class.php:457 libraries/Util.class.php:3353
-#: libraries/Util.class.php:3367 libraries/Util.class.php:4405
-#: libraries/Util.class.php:4423 libraries/config.values.php:112
+#: libraries/Menu.class.php:457 libraries/Util.class.php:3358
+#: libraries/Util.class.php:3372 libraries/Util.class.php:4410
+#: libraries/Util.class.php:4428 libraries/config.values.php:112
#: view_operations.php:92
msgid "Operations"
msgstr "操作"
#: libraries/Menu.class.php:382 libraries/Menu.class.php:490
-#: libraries/Util.class.php:4410 libraries/Util.class.php:4424
+#: libraries/Util.class.php:4415 libraries/Util.class.php:4429
#: libraries/relation.lib.php:252
msgid "Tracking"
msgstr "追蹤"
#: libraries/Menu.class.php:395 libraries/Menu.class.php:484
-#: libraries/Util.class.php:4409 libraries/Util.class.php:4425
+#: libraries/Util.class.php:4414 libraries/Util.class.php:4430
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
#: libraries/plugins/export/ExportHtmlword.class.php:557
#: libraries/plugins/export/ExportOdt.class.php:685
@@ -3856,16 +3858,16 @@ msgstr "觸發器"
msgid "Database seems to be empty!"
msgstr "資料庫是空的!"
-#: libraries/Menu.class.php:437 libraries/Util.class.php:4402
+#: libraries/Menu.class.php:437 libraries/Util.class.php:4407
msgid "Query"
msgstr "查詢"
-#: libraries/Menu.class.php:470 libraries/Util.class.php:4407
+#: libraries/Menu.class.php:470 libraries/Util.class.php:4412
#: libraries/rte/rte_words.lib.php:36
msgid "Routines"
msgstr "預存程序"
-#: libraries/Menu.class.php:477 libraries/Util.class.php:4408
+#: libraries/Menu.class.php:477 libraries/Util.class.php:4413
#: libraries/navigation/Nodes/Node_Event_Container.class.php:28
#: libraries/plugins/export/ExportSql.class.php:932
#: libraries/plugins/export/ExportXml.class.php:107
@@ -3873,16 +3875,16 @@ msgstr "預存程序"
msgid "Events"
msgstr "事件"
-#: libraries/Menu.class.php:496 libraries/Util.class.php:4411
+#: libraries/Menu.class.php:496 libraries/Util.class.php:4416
msgid "Designer"
msgstr "設計器"
-#: libraries/Menu.class.php:506 libraries/Util.class.php:4412
+#: libraries/Menu.class.php:506 libraries/Util.class.php:4417
#: libraries/structure.lib.php:362
msgid "Central columns"
msgstr "中央欄位"
-#: libraries/Menu.class.php:543 libraries/Util.class.php:4384
+#: 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
@@ -3890,38 +3892,38 @@ msgstr "中央欄位"
msgid "Databases"
msgstr "資料庫"
-#: libraries/Menu.class.php:567 libraries/Util.class.php:4387
+#: libraries/Menu.class.php:567 libraries/Util.class.php:4392
msgid "Users"
msgstr "使用者"
#: libraries/Menu.class.php:594 libraries/ServerStatusData.class.php:121
-#: libraries/Util.class.php:4391 libraries/server_common.lib.php:36
+#: libraries/Util.class.php:4396 libraries/server_common.lib.php:36
msgid "Binary log"
msgstr "二進位記錄"
#: libraries/Menu.class.php:600 libraries/ServerStatusData.class.php:126
-#: libraries/Util.class.php:4392 libraries/server_common.lib.php:42
+#: libraries/Util.class.php:4397 libraries/server_common.lib.php:42
#: libraries/structure.lib.php:175 libraries/structure.lib.php:865
msgid "Replication"
msgstr "備援"
#: libraries/Menu.class.php:605 libraries/ServerStatusData.class.php:193
-#: libraries/Util.class.php:4393 libraries/config.values.php:105
+#: libraries/Util.class.php:4398 libraries/config.values.php:105
#: libraries/server_engines.lib.php:108 libraries/server_engines.lib.php:112
#: libraries/sql_query_form.lib.php:420
msgid "Variables"
msgstr "變數"
-#: libraries/Menu.class.php:609 libraries/Util.class.php:4394
+#: libraries/Menu.class.php:609 libraries/Util.class.php:4399
msgid "Charsets"
msgstr "字元編碼"
-#: libraries/Menu.class.php:614 libraries/Util.class.php:4395
+#: libraries/Menu.class.php:614 libraries/Util.class.php:4400
#: libraries/server_common.lib.php:33 libraries/server_plugins.lib.php:31
msgid "Plugins"
msgstr "附加元件"
-#: libraries/Menu.class.php:618 libraries/Util.class.php:4396
+#: libraries/Menu.class.php:618 libraries/Util.class.php:4401
msgid "Engines"
msgstr "引擎"
@@ -3943,7 +3945,7 @@ msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
msgstr[0] "新增了 %1$d 列。"
-#: libraries/PDF.class.php:70 libraries/Util.class.php:2538
+#: libraries/PDF.class.php:70 libraries/Util.class.php:2541
#: libraries/browse_foreigners.lib.php:327
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:895
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:920
@@ -4583,12 +4585,12 @@ msgstr "可變長度 (0-65,535) 字串,使用二進位編碼與排序做資料
msgid "An enumeration, chosen from the list of defined values"
msgstr "列舉型態,可從已定義的清單中選擇一個值"
-#: libraries/Util.class.php:254
+#: libraries/Util.class.php:257
#, php-format
msgid "Max: %s%s"
msgstr "上限: %s %s"
-#: libraries/Util.class.php:683 libraries/rte/rte_events.lib.php:110
+#: libraries/Util.class.php:686 libraries/rte/rte_events.lib.php:110
#: libraries/rte/rte_events.lib.php:119 libraries/rte/rte_events.lib.php:150
#: libraries/rte/rte_general.lib.php:36 libraries/rte/rte_routines.lib.php:331
#: libraries/rte/rte_routines.lib.php:340
@@ -4599,118 +4601,114 @@ msgstr "上限: %s %s"
msgid "MySQL said: "
msgstr "MySQL 回應: "
-#: libraries/Util.class.php:1182 libraries/config/messages.inc.php:776
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
msgid "Explain SQL"
msgstr "SQL 語句分析"
-#: libraries/Util.class.php:1192
+#: libraries/Util.class.php:1195
msgid "Skip Explain SQL"
msgstr "略過 SQL 語句分析"
-#: libraries/Util.class.php:1200
+#: libraries/Util.class.php:1203
#, php-format
msgid "Analyze Explain at %s"
msgstr "分析語句於 %s"
-#: libraries/Util.class.php:1231
+#: libraries/Util.class.php:1234
msgid "Without PHP Code"
msgstr "關閉 PHP 程式碼"
-#: libraries/Util.class.php:1234 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
msgid "Create PHP Code"
msgstr "產生 PHP 程式碼"
-#: libraries/Util.class.php:1303
+#: libraries/Util.class.php:1306
msgctxt "Inline edit query"
msgid "Edit inline"
msgstr "行內編輯"
#. l10n: Short week day name
-#: libraries/Util.class.php:1645
+#: libraries/Util.class.php:1648
msgctxt "Short week day name"
msgid "Sun"
msgstr "週日"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/Util.class.php:1661
+#: libraries/Util.class.php:1664
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y 年 %m 月 %d 日 %H:%M"
-#: libraries/Util.class.php:2035
+#: libraries/Util.class.php:2038
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s 天 %s 小時,%s 分 %s 秒"
-#: libraries/Util.class.php:2128
+#: libraries/Util.class.php:2131
msgid "Missing parameter:"
msgstr "未填寫必要的參數:"
-#: libraries/Util.class.php:2662
+#: libraries/Util.class.php:2665
#, php-format
msgid "Jump to database \"%s\"."
msgstr "切換到資料庫「%s」。"
-#: libraries/Util.class.php:2687
+#: libraries/Util.class.php:2690
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s 功能受到一個已知的問題影響,詳情請參考 %s"
-#: libraries/Util.class.php:2898
+#: libraries/Util.class.php:2901
msgid "Click to toggle"
msgstr "點此切換"
-#: libraries/Util.class.php:3581 libraries/sql_query_form.lib.php:465
+#: libraries/Util.class.php:3586 libraries/sql_query_form.lib.php:465
#: prefs_manage.php:248
msgid "Browse your computer:"
msgstr "由電腦上傳:"
-#: libraries/Util.class.php:3606
+#: libraries/Util.class.php:3611
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "由網頁伺服器上傳目錄中選擇 %s:"
-#: libraries/Util.class.php:3635 libraries/insert_edit.lib.php:1167
+#: libraries/Util.class.php:3640 libraries/insert_edit.lib.php:1167
#: libraries/sql_query_form.lib.php:475
msgid "The directory you set for upload work cannot be reached."
msgstr "設定之上傳目錄錯誤,無法使用。"
-#: libraries/Util.class.php:3646
+#: libraries/Util.class.php:3651
msgid "There are no files to upload!"
msgstr "無可上傳的檔案!"
-#: libraries/Util.class.php:3671 libraries/Util.class.php:3672
+#: libraries/Util.class.php:3676 libraries/Util.class.php:3677
#: libraries/structure.lib.php:329
msgid "Empty"
msgstr "清空"
-#: libraries/Util.class.php:3677 libraries/Util.class.php:3678
+#: libraries/Util.class.php:3682 libraries/Util.class.php:3683
msgid "Execute"
msgstr "執行"
-#: libraries/Util.class.php:4224
+#: libraries/Util.class.php:4229
msgid "Print"
msgstr "列印"
-#: libraries/Util.class.php:4329 libraries/structure.lib.php:915
+#: libraries/Util.class.php:4334 libraries/structure.lib.php:915
#: libraries/structure.lib.php:1958
msgid "Creation"
msgstr "建立時間"
-#: libraries/Util.class.php:4335 libraries/structure.lib.php:922
+#: libraries/Util.class.php:4340 libraries/structure.lib.php:922
#: libraries/structure.lib.php:1966
msgid "Last update"
msgstr "最後更新"
-#: libraries/Util.class.php:4341 libraries/structure.lib.php:929
+#: libraries/Util.class.php:4346 libraries/structure.lib.php:929
#: libraries/structure.lib.php:1974
msgid "Last check"
msgstr "最後檢查"
-#: libraries/Util.class.php:4862
-msgid "Start row:"
-msgstr "起始列號:"
-
#: libraries/browse_foreigners.lib.php:136
msgid "Search:"
msgstr "搜尋:"
@@ -4733,13 +4731,13 @@ msgstr "使用此值"
msgid "Rows"
msgstr "資料列數"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:323
-#: libraries/config/setup.forms.php:359 libraries/config/setup.forms.php:382
-#: libraries/config/setup.forms.php:387
-#: libraries/config/user_preferences.forms.php:223
-#: libraries/config/user_preferences.forms.php:259
-#: libraries/config/user_preferences.forms.php:282
-#: libraries/config/user_preferences.forms.php:287
+#: 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 "資料"
@@ -5154,7 +5152,7 @@ msgid "Set value: %s"
msgstr "設定值: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:555
msgid "Restore default value"
msgstr "還原預設值"
@@ -5857,10 +5855,10 @@ msgstr "自訂瀏覽模式。"
msgid "Customize default options."
msgstr "自定預設選項。"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:255
-#: libraries/config/setup.forms.php:334
-#: libraries/config/user_preferences.forms.php:157
-#: libraries/config/user_preferences.forms.php:234
+#: 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
msgid "CSV"
msgstr "CSV"
@@ -6320,7 +6318,7 @@ msgid "Maximum displayed SQL length"
msgstr "顯示 SQL 指令的長度限制"
#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:539
+#: libraries/config/messages.inc.php:541
msgid "Users cannot set a higher value"
msgstr "使用者不能設定更大的值"
@@ -6519,32 +6517,40 @@ msgstr "連結包含了編輯、複製和刪除。"
msgid "Where to show the table row links"
msgstr "資料列的連結顯示位置"
+#: libraries/config/messages.inc.php:493
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
#: libraries/config/messages.inc.php:494
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
msgid "Use natural order for sorting table and database names."
msgstr "使用自然排序顯示資料庫與資料表名稱。"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:497
msgid "Natural order"
msgstr "自然排序"
-#: libraries/config/messages.inc.php:496 libraries/config/messages.inc.php:527
-#: libraries/config/messages.inc.php:529
+#: 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."
msgstr "僅使用圖示、文字或都使用。"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:499
msgid "Table navigation bar"
msgstr "資料表導覽欄"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:501
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "使用 GZip 輸出快取以加快 HTTP 傳輸速度。"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:502
msgid "GZip output buffering"
msgstr "GZip 輸出快取"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:504
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6552,19 +6558,19 @@ msgstr ""
"[kbd]SMART[/kbd] - 如: 對 TIME、DATE、DATETIME 和 TIMESTAMP 類型的欄位遞減排"
"序,其他欄位遞增。"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:507
msgid "Default sorting order"
msgstr "預設排序"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:509
msgid "Use persistent connections to MySQL databases."
msgstr "使用持續連線的方式連線到 MySQL 資料庫。"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:510
msgid "Persistent connections"
msgstr "持續連線"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:512
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6573,47 +6579,47 @@ msgstr ""
"關閉在缺少 phpMyAdmin 設定儲存空間所需資料表時在資料庫結構頁面中顯示的預設警"
"告訊息。"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:517
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "缺少 phpMyAdmin 設定儲存空間資料表"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:519
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:521
+#: libraries/config/messages.inc.php:523
msgid "Server/library difference warning"
msgstr "伺服器與函式庫不同版本的警告"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:525
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr "關閉在資料表欄位是 MySQL 保留字時,結構頁面內顯示的預設警告訊息。"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:528
msgid "MySQL reserved word warning"
msgstr "MySQL 保留字警告"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:530
msgid "How to display the menu tabs"
msgstr "如何顯示選單標籤頁"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:532
msgid "How to display various action links"
msgstr "如何顯示各種操作連結"
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:533
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "不允許編輯 BLOB 和 BINARY 類型欄位。"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:534
msgid "Protect binary columns"
msgstr "保護二進位欄位"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:536
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6623,118 +6629,118 @@ msgstr ""
"開啟此功能。若不使用,將會採用 Javascript 來保存查詢歷史記錄 (只會保留至瀏覽"
"器關閉為止)。"
-#: libraries/config/messages.inc.php:538
+#: libraries/config/messages.inc.php:540
msgid "Permanent query history"
msgstr "保存查詢歷史記錄"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:542
msgid "How many queries are kept in history."
msgstr "要保存的查詢歷史記錄的數量。"
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:543
msgid "Query history length"
msgstr "查詢歷史記錄數量"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:545
msgid "Select which functions will be used for character set conversion."
msgstr "選擇進行字元編碼轉換時使用的函數。"
-#: libraries/config/messages.inc.php:544
+#: libraries/config/messages.inc.php:546
msgid "Recoding engine"
msgstr "編碼引擎"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "瀏覽資料表時會使用上次的資料表排序。"
-#: libraries/config/messages.inc.php:547
+#: libraries/config/messages.inc.php:549
msgid "Remember table's sorting"
msgstr "記住資料表的排序"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:550
msgid "Default sort order for tables with a primary key."
msgstr "預設使用主鍵來排序表格。"
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:551
msgid "Primary key default sort order"
msgstr "主鍵預設排序"
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:553
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr "每 X 儲存格重複標題,要關閉此功能請設爲 [kbd]0[/kbd]。"
-#: libraries/config/messages.inc.php:552
+#: libraries/config/messages.inc.php:554
msgid "Repeat headers"
msgstr "重複顯示標題"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:556
msgid "Grid editing: trigger action"
msgstr "表格編輯: 觸發動作"
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:557
msgid "Relational display"
msgstr "關聯顯示"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:558
msgid "For display Options"
msgstr "顯示用選項"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:559
msgid "Grid editing: save all edited cells at once"
msgstr "表格編輯: 一次儲存所有已編輯資料"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:560
msgid "Directory where exports can be saved on server."
msgstr "伺服器上用來儲存匯出檔案的資料夾。"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:561
msgid "Save directory"
msgstr "儲存資料夾"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:562
msgid "Leave blank if not used."
msgstr "不使用請留空。"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:563
msgid "Host authorization order"
msgstr "主機認證模式"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:564
msgid "Leave blank for defaults."
msgstr "使用預設值請留空。"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:565
msgid "Host authorization rules"
msgstr "主機認證規則"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:566
msgid "Allow logins without a password"
msgstr "允許空密碼登入"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:567
msgid "Allow root login"
msgstr "允許 root 使用者登入"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:568
msgid "Session timezone"
msgstr "連線階段時區"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:569
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr "設定有效的時區,可能於您的資料庫伺服器有所不同"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:571
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "使用 HTTP 基本認證時顯示給使用者的提示資訊。"
-#: libraries/config/messages.inc.php:570
+#: libraries/config/messages.inc.php:572
msgid "HTTP Realm"
msgstr "HTTP 提示資訊"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:574
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -6743,19 +6749,19 @@ msgstr ""
"[a@http://swekey.com]SweKey 硬件認證 [/a]的設定檔案路徑 (請勿置於您的檔案根資"
"料夾,推薦使用: /etc/swekey.conf)。"
-#: libraries/config/messages.inc.php:576
+#: libraries/config/messages.inc.php:578
msgid "SweKey config file"
msgstr "SweKey 設定檔案"
-#: libraries/config/messages.inc.php:577
+#: libraries/config/messages.inc.php:579
msgid "Authentication method to use."
msgstr "要使用的認證方式。"
-#: libraries/config/messages.inc.php:578 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "認證方式"
-#: libraries/config/messages.inc.php:580
+#: libraries/config/messages.inc.php:582
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -6763,41 +6769,41 @@ msgstr ""
"在不支援[a@http://wiki.phpmyadmin.net/pma/bookmark]書籤[/a]功能時請留空,建議"
"用: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:583
+#: libraries/config/messages.inc.php:585
msgid "Bookmark table"
msgstr "書籤表"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:587
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr "無欄位註解/MIME類型時留空白。建議值: [kbd]pma__column_info[/kbd]。"
-#: libraries/config/messages.inc.php:588
+#: libraries/config/messages.inc.php:590
msgid "Column information table"
msgstr "列資訊表"
-#: libraries/config/messages.inc.php:589
+#: libraries/config/messages.inc.php:591
msgid "Compress connection to MySQL server."
msgstr "壓縮連線到 MySQL 伺服器。"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:592
msgid "Compress connection"
msgstr "壓縮連線"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:594
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "怎樣連線到伺服器,如果不確定,請選擇 [kbd]tcp[/kbd]。"
-#: libraries/config/messages.inc.php:593
+#: libraries/config/messages.inc.php:595
msgid "Connection type"
msgstr "連接方式"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:596
msgid "Control user password"
msgstr "控制使用者的密碼"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:598
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -6805,36 +6811,36 @@ msgstr ""
"只擁有部份權限的 MySQL 特殊使用者,詳情請參考 [a@http://wiki.phpmyadmin.net/"
"pma/controluser]wiki[/a]。"
-#: libraries/config/messages.inc.php:599
+#: libraries/config/messages.inc.php:601
msgid "Control user"
msgstr "控制使用者"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:603
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr "設定儲存空間的備用主機位置,若不修改備用主機位置則留空。"
-#: libraries/config/messages.inc.php:604
+#: libraries/config/messages.inc.php:606
msgid "Control host"
msgstr "管理伺服器"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:608
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:610
+#: libraries/config/messages.inc.php:612
msgid "Control port"
msgstr "管理連接埠"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:614
msgid "Hide databases matching regular expression (PCRE)."
msgstr "隱藏資料庫名稱符合此正規表示法(PCRE)的項目。"
-#: libraries/config/messages.inc.php:613
+#: libraries/config/messages.inc.php:615
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]"
@@ -6842,77 +6848,77 @@ msgstr ""
"詳情請參考 [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA 問題追蹤系"
"統[/a] 與 [a@http://bugs.mysql.com/19588]MySQL 問題回報[/a]"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:616
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "停用 INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:617
msgid "Hide databases"
msgstr "隱藏資料庫"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:619
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr "不使用 SQL 查詢歷史功能請留空,建議值: [kbd]pma__history[/kbd]。"
-#: libraries/config/messages.inc.php:620
+#: libraries/config/messages.inc.php:622
msgid "SQL query history table"
msgstr "SQL 查詢紀錄表"
-#: libraries/config/messages.inc.php:621
+#: libraries/config/messages.inc.php:623
msgid "Hostname where MySQL server is running."
msgstr "正在執行 MySQL 伺服器的主機名稱。"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:624
msgid "Server hostname"
msgstr "伺服器主機名稱"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:625
msgid "Logout URL"
msgstr "登出網址"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:627
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr "儲存於資料庫的資料表偏好設定數量限制,超過數量會從最舊的項目自動移除。"
-#: libraries/config/messages.inc.php:629
+#: libraries/config/messages.inc.php:631
msgid "Maximal number of table preferences to store"
msgstr "資料表偏好設定的儲存最大值"
-#: libraries/config/messages.inc.php:630
+#: libraries/config/messages.inc.php:632
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "使用範例查詢(QBE)已儲存的搜尋資料表"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:634
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr "不使用 QBE 查詢功能請留空,建議值:[kbd]pma__savedsearches[/kbd]。"
-#: libraries/config/messages.inc.php:635
+#: libraries/config/messages.inc.php:637
msgid "Central columns table"
msgstr "中央欄位資料表"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:639
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr "不使用中央欄功能請留空,建議值: [kbd]pma__central_columns[/kbd]。"
-#: libraries/config/messages.inc.php:640
+#: libraries/config/messages.inc.php:642
msgid "Try to connect without password."
msgstr "嘗試用空密碼連線。"
-#: libraries/config/messages.inc.php:641
+#: libraries/config/messages.inc.php:643
msgid "Connect without password"
msgstr "用空密碼連線"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:645
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 "
@@ -6921,28 +6927,28 @@ msgstr ""
"您可以使用 MySQL 萬用字元 (% 和 _),如果想要表示萬用字元本身,請在前面加上反"
"斜線。例: 用 [kbd]'my\\_db'[/kbd] 而不是 [kbd]'my_db'[/kbd]。"
-#: libraries/config/messages.inc.php:647
+#: libraries/config/messages.inc.php:649
msgid "Show only listed databases"
msgstr "僅顯示清單中的資料庫"
-#: libraries/config/messages.inc.php:648 libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
msgid "Leave empty if not using config auth."
msgstr "不使用 config 認證方式請留空。"
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:651
msgid "Password for config auth"
msgstr "config 認證方式的密碼"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:653
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:653
+#: libraries/config/messages.inc.php:655
msgid "PDF schema: pages table"
msgstr "PDF 大綱: 資料表頁"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:657
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 "
@@ -6952,31 +6958,31 @@ msgstr ""
"pma/pmadb]pmadb [/a] 取得更多資訊。留空則關閉此功能,建議為: "
"[kbd]phpmyadmin[/kbd]。"
-#: libraries/config/messages.inc.php:659
+#: libraries/config/messages.inc.php:661
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "資料庫名稱"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:663
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr "MySQL 伺服器監聽的連接埠,留空爲預設。"
-#: libraries/config/messages.inc.php:662
+#: libraries/config/messages.inc.php:664
msgid "Server port"
msgstr "伺服器端口"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:666
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
"如果不想要自動使用最近的資料表本欄位請留空,建議設定: [kbd]pma_config[/kbd]。"
-#: libraries/config/messages.inc.php:667
+#: libraries/config/messages.inc.php:669
msgid "Recently used table"
msgstr "最近使用的資料表"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:671
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -6984,11 +6990,11 @@ msgstr ""
"不使用跨連線階段 \"保留\" 最愛資料表請留空,建議值: [kbd]pma__favorite[/"
"kbd]。"
-#: libraries/config/messages.inc.php:672
+#: libraries/config/messages.inc.php:674
msgid "Favorites table"
msgstr "最愛的資料表"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:676
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -6996,11 +7002,11 @@ msgstr ""
"不使用 [a@http://wiki.phpmyadmin.net/pma/relation]關聯連結[/a] 功能請留空,建"
"議值: [kbd]pma__relation[/kbd]。"
-#: libraries/config/messages.inc.php:678
+#: libraries/config/messages.inc.php:680
msgid "Relation table"
msgstr "關係表"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:682
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7008,132 +7014,132 @@ msgstr ""
"請參考 [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]認證模式[/a] 中的"
"範例。"
-#: libraries/config/messages.inc.php:683
+#: libraries/config/messages.inc.php:685
msgid "Signon session name"
msgstr "Signon 連線名稱"
-#: libraries/config/messages.inc.php:684
+#: libraries/config/messages.inc.php:686
msgid "Signon URL"
msgstr "登入網址"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:688
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr "MySQL 伺服器監聽的連線埠,留空爲預設。"
-#: libraries/config/messages.inc.php:687
+#: libraries/config/messages.inc.php:689
msgid "Server socket"
msgstr "伺服器套接字 (socket)"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:690
msgid "Enable SSL for connection to MySQL server."
msgstr "使用 SSL 連線到 MySQL 伺服器。"
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:691
msgid "Use SSL"
msgstr "使用 SSL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr "不使用 PDF 大綱功能請留空,建議值: [kbd]pma__table_coords[/kbd]。"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:695
msgid "Designer and PDF schema: table coordinates"
msgstr "設計器與 PDF 綱要: 資料表座標"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:697
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
"不使用以表格顯示描述顯示的欄位請留空,建議值: [kbd]pma__table_info[/kbd]。"
-#: libraries/config/messages.inc.php:698
+#: libraries/config/messages.inc.php:700
msgid "Display columns table"
msgstr "顯示欄位表"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:702
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
"不在資料表中儲存跨連線 UI 偏好設定時請留空,建議值:[kbd]pma__config[/kbd]。"
-#: libraries/config/messages.inc.php:703
+#: libraries/config/messages.inc.php:705
msgid "UI preferences table"
msgstr "「介面偏好」資料表"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:707
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
"設定當資料庫建立時,是否在記錄檔第一行加上 DROP DATABASE IF EXISTS 指令。"
-#: libraries/config/messages.inc.php:708
+#: libraries/config/messages.inc.php:710
msgid "Add DROP DATABASE"
msgstr "加入 DROP DATABASE"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:712
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:713
+#: libraries/config/messages.inc.php:715
msgid "Add DROP TABLE"
msgstr "加入 DROP TABLE"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:717
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr "設定當檢視表建立時,是否在記錄檔前面加上 DROP 視表 IF EXISTS 指令。"
-#: libraries/config/messages.inc.php:718
+#: libraries/config/messages.inc.php:720
msgid "Add DROP VIEW"
msgstr "加入 DROP VIEW"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:722
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr "給新版的自動建立指定一個指令清單。"
-#: libraries/config/messages.inc.php:721
+#: libraries/config/messages.inc.php:723
msgid "Statements to track"
msgstr "要追蹤的指令"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:725
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr "不使用 SQL 查詢追蹤功能請留空,建議值: [kbd]pma__tracking[/kbd]。"
-#: libraries/config/messages.inc.php:726
+#: libraries/config/messages.inc.php:728
msgid "SQL query tracking table"
msgstr "SQL 查詢追蹤表"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:730
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr "設定追蹤系統是否自動爲資料表和檢視表建立版本。"
-#: libraries/config/messages.inc.php:732
+#: libraries/config/messages.inc.php:734
msgid "Automatically create versions"
msgstr "自動建立版本"
-#: libraries/config/messages.inc.php:733
+#: libraries/config/messages.inc.php:735
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr "不在資料庫中儲存使用者偏好設定請留空,建議值: [kbd]pma__config[/kbd]。"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:736
msgid "User preferences storage table"
msgstr "使用者偏好表"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:737
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 "
@@ -7142,11 +7148,11 @@ msgstr ""
"設定選單功能必須同時啟用此資料表與使用者群組資料表,若有其中一個未填寫則會停"
"用此功能,請參考:[kbd]pma__users[/kbd]。"
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:738
msgid "Users table"
msgstr "使用者資料表"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:739
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, "
@@ -7155,11 +7161,11 @@ msgstr ""
"設定選單功能必須同時啟用此資料表與使用者資料表,若有其中一個未填寫則會停用此"
"功能,請參考:[kbd]pma__usergroups[/kbd]。"
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:740
msgid "User groups table"
msgstr "使用者群組資料表"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:741
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7167,33 +7173,33 @@ msgstr ""
"空白為停用隱藏和顯示導覽項目的功能,建議值:[kbd]pma__navigationhiding[/"
"kbd]。"
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:742
msgid "Hidden navigation items table"
msgstr "隱藏導覽項目資料表"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:744
msgid "User for config auth"
msgstr "config 認證方式的帳號"
-#: libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:745
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr "填寫易於使用者理解的伺服器描述,填空將顯示主機名稱。"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:746
msgid "Verbose name of this server"
msgstr "伺服器名稱"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:747
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "是否顯示 \"顯示全部資料列\" 的按鈕。"
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:748
msgid "Allow to display all the rows"
msgstr "允許顯示所有資料列"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:749
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7202,135 +7208,135 @@ msgstr ""
"注意: 該選項不影響 [kbd]config[/kbd] 認證方式,因爲密碼是儲存在設定檔案中,該"
"選項也不限制直接執行可實現相同功能的指令。"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:750
msgid "Show password change form"
msgstr "顯示修改密碼"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:751
msgid "Show create database form"
msgstr "顯示建立資料庫表單"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:752
msgid "Show or hide a column displaying the comments for all tables."
msgstr "顯示或隱藏所有資料表的建立時間欄位。"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:753
msgid "Show table comments"
msgstr "顯示資料表備註"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:754
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr "顯示或隱藏所有資料表欄位建立的時間。"
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:755
msgid "Show Creation timestamp"
msgstr "顯示建立時間戳記"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:756
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr "顯示或隱藏所有資料表的最後更新時間欄位。"
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:757
msgid "Show Last update timestamp"
msgstr "顯示最後更新的時間戳記"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:758
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr "顯示或隱藏所有資料表的最後檢查時間欄位。"
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:759
msgid "Show Last check timestamp"
msgstr "顯示最後檢查時間戳記"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:760
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr "定義在編輯/新增模式中是否顯示欄位型態。"
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:761
msgid "Show field types"
msgstr "顯示欄位型態"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:762
msgid "Display the function fields in edit/insert mode."
msgstr "在編輯/新增模式中顯示函數欄位。"
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:763
msgid "Show function fields"
msgstr "顯示函數欄位"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:764
msgid "Whether to show hint or not."
msgstr "是否顯示使用提示。"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:765
msgid "Show hint"
msgstr "顯示提示"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:766
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:765
+#: libraries/config/messages.inc.php:767
msgid "Show phpinfo() link"
msgstr "顯示 phpinfo() 連結"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:768
msgid "Show detailed MySQL server information"
msgstr "顯示 MySQL 伺服器詳細資訊"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:769
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "定義是否顯示 phpMyAdmin 產生的 SQL 指令。"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:770
msgid "Show SQL queries"
msgstr "顯示 SQL 查詢"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:771
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "是否在查詢過後繼續在畫面上顯示查詢框。"
-#: libraries/config/messages.inc.php:770 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "繼續顯示查詢框"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:773
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr "允許顯示資料庫和資料表的統計資訊 (如: 空間使用)。"
-#: libraries/config/messages.inc.php:772
+#: libraries/config/messages.inc.php:774
msgid "Show statistics"
msgstr "顯示統計"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:775
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr "將已鎖定的資料表在資料庫中顯示爲使用中。"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:776
msgid "Skip locked tables"
msgstr "跳過鎖定的資料表"
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:781
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr "關閉在檢測到 Suhosin 時在首頁顯示的預設警告訊息。"
-#: libraries/config/messages.inc.php:780
+#: libraries/config/messages.inc.php:782
msgid "Suhosin warning"
msgstr "Suhosin 的警告"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:783
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 "
@@ -7339,51 +7345,51 @@ msgstr ""
"關閉在 PHP 設定 session.gc_maxlifetime 小於 `LoginCookieValidity` 時在首頁顯"
"示的預設警告訊息。"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:785
msgid "Login cookie validity warning"
msgstr "登入 Cookie 有效期警告"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:787
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr "編輯模式的文字框大小 (欄數),此值將用於 SQL 查詢文字框 (*2)。"
-#: libraries/config/messages.inc.php:786
+#: libraries/config/messages.inc.php:788
msgid "Textarea columns"
msgstr "文字框寬度 (字數)"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:789
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr "編輯模式的文字框大小 (列數),此值將用於 SQL 查詢文字框 (*2)。"
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:790
msgid "Textarea rows"
msgstr "文字框列數"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:791
msgid "Title of browser window when a database is selected."
msgstr "當選擇資料庫時瀏覽器視窗顯示的標題。"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:793
msgid "Title of browser window when nothing is selected."
msgstr "當未選擇任何項目時瀏覽器視窗顯示的標題。"
-#: libraries/config/messages.inc.php:792
+#: libraries/config/messages.inc.php:794
msgid "Default title"
msgstr "預設標題"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:795
msgid "Title of browser window when a server is selected."
msgstr "當選擇伺服器時瀏覽器視窗顯示的標題。"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:797
msgid "Title of browser window when a table is selected."
msgstr "當選擇資料表時瀏覽器視窗顯示的標題。"
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:799
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-"
@@ -7394,52 +7400,52 @@ msgstr ""
"信任來自 1.2.3.4 代理伺服器所發出的 HTTP_X_FORWARDED_FOR (X-Forwarded-For) 標"
"頭: [br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]。"
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:800
msgid "List of trusted proxies for IP allow/deny"
msgstr "可信認的代理伺服器 IP 允許/拒絕清單"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:801
msgid "Directory on server where you can upload files for import."
msgstr "伺服器上用來存放匯入檔案的資料夾。"
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:802
msgid "Upload directory"
msgstr "上傳資料夾"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:803
msgid "Allow for searching inside the entire database."
msgstr "允許搜尋整個資料庫。"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:804
msgid "Use database search"
msgstr "使用資料庫搜尋"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:805
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr "停用時,使用者不能設定下列選項,右側的複選框被忽略。"
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:806
msgid "Enable the Developer tab in settings"
msgstr "啓用設定選項中的開發人員頁籤"
-#: libraries/config/messages.inc.php:805 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "檢查是否有更新版本"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:808
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "啟動在 phpMyAdmin 首頁中更新版本的檢查。"
-#: libraries/config/messages.inc.php:807 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:809 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:808
+#: libraries/config/messages.inc.php:810
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 "
@@ -7450,11 +7456,11 @@ msgstr ""
"用。若您的伺服器所在位置無法直接存取網際網路的話,將會需要此設定。格式為:"
"\"主機名稱:埠號\"。"
-#: libraries/config/messages.inc.php:809
+#: libraries/config/messages.inc.php:811
msgid "Proxy url"
msgstr "代理伺服器網址"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:812
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7463,19 +7469,19 @@ msgstr ""
"使用代理伺服器進行身份驗證的使用者名稱,預設無身份驗證。如果提供了使用者名"
"稱,則會執行基本驗證。目前不支援其他類型的身份驗證。"
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:813
msgid "Proxy username"
msgstr "代理伺服器使用者名稱"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:814
msgid "The password for authenticating with the proxy."
msgstr "使用代理伺服器進行身份驗證的密碼。"
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:815
msgid "Proxy password"
msgstr "代理伺服器密碼"
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:817
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7483,51 +7489,51 @@ msgstr ""
"允許在匯入和匯出時使用 [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP "
"[/a] 壓縮。"
-#: libraries/config/messages.inc.php:816
+#: libraries/config/messages.inc.php:818
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:819
msgid "Enter your public key for your domain reCaptcha service."
msgstr "請為您的網域驗證碼 (reCaptcha) 服務輸入公開金鑰。"
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:820
msgid "Public key for reCaptcha"
msgstr "驗證碼的公開金鑰"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:821
msgid "Enter your private key for your domain reCaptcha service."
msgstr "請為您的網域驗證碼 (reCaptcha) 服務輸入私密金鑰。"
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:822
msgid "Private key for reCaptcha"
msgstr "驗證碼的私密金鑰"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:824
msgid "Choose the default action when sending error reports."
msgstr "請選擇傳送錯誤報告的預設動作。"
-#: libraries/config/messages.inc.php:823
+#: libraries/config/messages.inc.php:825
msgid "Send error reports"
msgstr "傳送錯誤報告"
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:827
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr "按下 Enter 執行查詢 (或使用 Ctrl+Enter)。換行使用 Shift+Enter。"
-#: libraries/config/messages.inc.php:826
+#: libraries/config/messages.inc.php:828
msgid "Enter executes queries in console"
msgstr "於控制台輸入要執行的查詢"
-#: libraries/config/messages.inc.php:829
+#: libraries/config/messages.inc.php:831
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr "開啟零設定模式可讓您自動安裝 phpMyAdmin 設定空間資料表。"
-#: libraries/config/messages.inc.php:832
+#: libraries/config/messages.inc.php:834
msgid "Enable Zero Configuration mode"
msgstr "開啟零設定模式"
@@ -7551,44 +7557,44 @@ msgstr "HTTP 認證"
msgid "Signon authentication"
msgstr "Signon 認證"
-#: libraries/config/setup.forms.php:263
-#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/setup.forms.php:264
+#: libraries/config/user_preferences.forms.php:166
msgid "CSV using LOAD DATA"
msgstr "CSV 使用 LOAD DATA"
-#: libraries/config/setup.forms.php:272 libraries/config/setup.forms.php:371
-#: libraries/config/user_preferences.forms.php:173
-#: libraries/config/user_preferences.forms.php:271
+#: 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
msgid "OpenDocument Spreadsheet"
msgstr "OpenOffice 表格"
-#: libraries/config/setup.forms.php:279
-#: libraries/config/user_preferences.forms.php:180
+#: libraries/config/setup.forms.php:280
+#: libraries/config/user_preferences.forms.php:181
msgid "Quick"
msgstr "快速"
-#: libraries/config/setup.forms.php:283
-#: libraries/config/user_preferences.forms.php:184
+#: libraries/config/setup.forms.php:284
+#: libraries/config/user_preferences.forms.php:185
msgid "Custom"
msgstr "自訂"
-#: libraries/config/setup.forms.php:307
-#: libraries/config/user_preferences.forms.php:207
+#: libraries/config/setup.forms.php:308
+#: libraries/config/user_preferences.forms.php:208
msgid "Database export options"
msgstr "資料庫匯出選項"
-#: libraries/config/setup.forms.php:343
-#: libraries/config/user_preferences.forms.php:243
+#: libraries/config/setup.forms.php:344
+#: libraries/config/user_preferences.forms.php:244
msgid "CSV for MS Excel"
msgstr "MS Excel 的 CSV 格式"
-#: libraries/config/setup.forms.php:366
-#: libraries/config/user_preferences.forms.php:266
+#: libraries/config/setup.forms.php:367
+#: libraries/config/user_preferences.forms.php:267
msgid "Microsoft Word 2000"
msgstr "微軟 Word 2000"
-#: libraries/config/setup.forms.php:375
-#: libraries/config/user_preferences.forms.php:275
+#: libraries/config/setup.forms.php:376
+#: libraries/config/user_preferences.forms.php:276
msgid "OpenDocument Text"
msgstr "OpenOffice 檔案"
@@ -13071,15 +13077,31 @@ msgstr "使用書籤 \"%s\" 作爲預設的查詢。"
msgid "Showing as PHP code"
msgstr "顯示的內容爲 PHP 程式碼"
-#: libraries/sql.lib.php:1765
+#: 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."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
-"Edit, Copy and Delete features are not available."
+"Edit, Copy and Delete features are not available. %s"
msgstr ""
"目前選擇的項目不含唯一(Unique)的資料欄位,將無法執行修改、複製、刪除等相關的"
"功能。"
-#: libraries/sql.lib.php:1802
+#: 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."
+msgid ""
+"Current selection does not contain a unique column. Grid edit, Edit, Copy "
+"and Delete features may result in undesired behavior. %s"
+msgstr ""
+"目前選擇的項目不含唯一(Unique)的資料欄位,將無法執行修改、複製、刪除等相關的"
+"功能。"
+
+#: libraries/sql.lib.php:1817
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "資料表 `%s` 的索引存在問題"
@@ -14309,6 +14331,10 @@ msgstr "說明:"
msgid "Drag to reorder"
msgstr "使用滑鼠拖曳來重新排序"
+#: templates/startAndNumberOfRowsPanel.phtml:3
+msgid "Start row:"
+msgstr "起始列號:"
+
#: templates/table/options.phtml:8
msgid "Select columns (at least one):"
msgstr "選擇欄位 (至少一個):"
diff --git a/templates/startAndNumberOfRowsPanel.phtml b/templates/startAndNumberOfRowsPanel.phtml
new file mode 100644
index 0000000000..eb7cc1747b
--- /dev/null
+++ b/templates/startAndNumberOfRowsPanel.phtml
@@ -0,0 +1,20 @@
+
\ No newline at end of file
diff --git a/test/classes/PMA_Config_test.php b/test/classes/PMA_Config_test.php
index b6a124c725..899b6891e2 100644
--- a/test/classes/PMA_Config_test.php
+++ b/test/classes/PMA_Config_test.php
@@ -11,6 +11,7 @@
* Include to test.
*/
require_once 'libraries/core.lib.php';
+require_once 'libraries/Util.class.php';
require_once 'libraries/Config.class.php';
require_once 'libraries/relation.lib.php';
require_once 'libraries/Theme.class.php';
@@ -1031,7 +1032,6 @@ class PMA_ConfigTest extends PHPUnit_Framework_TestCase
*
* @return void
*/
- /*
public function testCheckHTTP()
{
if (! function_exists('curl_init')) {
@@ -1048,7 +1048,7 @@ class PMA_ConfigTest extends PHPUnit_Framework_TestCase
$this->object->checkHTTP("http://www.phpmyadmin.net/test/nothing")
);
}
- */
+
/**
* Tests for rewriting URL to SSL variant
*
diff --git a/test/classes/PMA_Util_test.php b/test/classes/PMA_Util_test.php
index 73657acf91..ee8edbf2f4 100644
--- a/test/classes/PMA_Util_test.php
+++ b/test/classes/PMA_Util_test.php
@@ -114,16 +114,16 @@ class PMA_Util_Test extends PHPUnit_Framework_TestCase
*
* @group large
*/
- /*
public function testGetLatestVersion()
{
$GLOBALS['cfg']['ProxyUrl'] = '';
$GLOBALS['cfg']['VersionCheckProxyUrl'] = '';
+ $GLOBALS['cfg']['VersionCheck'] = true;
$version = PMA_Util::getLatestVersion();
$this->assertNotEmpty($version->version);
$this->assertNotEmpty($version->date);
}
- */
+
/**
* Test version to int conversion.
*